]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_wernis.php
Updated copyright year.
[mailer.git] / inc / modules / admin / what-config_wernis.php
index ccd6fbfbc5960633418c3b3911374f64851c3e6c..95b848394f753b7e7c5d64f80ae5e517592a3c04 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 12/26/2007 *
- * ================                             Last change: 12/26/2007 *
+ * Mailer v0.2.1-FINAL                                Start: 12/26/2007 *
+ * ===================                          Last change: 12/26/2007 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_wernis.php                           *
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
 
 // Add description as navigation point
-ADD_DESCR('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
-if (IS_FORM_SENT()) {
-       // First merge temporarily the new API data into the current config
-       mergeConfig(REQUEST_POST_ARRAY());
+// Form sent?
+if (isFormSent('save_config')) {
+       // Is wernis_pass set?
+       if (isPostRequestElementSet('wernis_pass')) {
+               // Hash the password and remove clear-text
+               setPostRequestElement('wernis_pass_md5', hashSha256(postRequestElement('wernis_pass')));
 
-       // Let's test the API first (hold your horses here, cowboy! Thank you. :) )
-       if (WERNIS_TEST_API()) {
-               // Revert german commata
-               foreach (array('payout_factor', 'withdraw_factor', 'payout_fee_percent', 'withdraw_fee_percent') as $revert) {
-                       REQUEST_SET_POST('wernis_'.$revert, convertCommaToDot(REQUEST_POST('wernis_'.$revert)));
-               } // END - if
+               // First merge temporarily the new API data into the current config
+               mergeConfig(postRequestArray());
 
-               // Hash the password and remove clear-text
-               REQUEST_SET_POST('wernis_pass_md5', md5(REQUEST_POST('wernis_pass')));
-               REQUEST_UNSET_POST(('wernis_pass'));
+               // Let's test the API first (hold your horses here, cowboy! Thank you. :) )
+               if (doAdminTestWernisApi()) {
+                       // Revert german commata
+                       foreach (array('payout_factor', 'withdraw_factor', 'payout_fee_percent', 'withdraw_fee_percent') as $revert) {
+                               setPostRequestElement('wernis_' . $revert, postRequestElement('wernis_' . $revert));
+                       } // END - if
 
-               // Save settings
-               ADMIN_SAVE_SETTINGS_POST();
-       } else {
-               // Failed to test the API!
-               LOAD_TEMPLATE('admin_settings_saved', false, GET_WERNIS_ERROR_MESSAGE());
-       }
-}  else {
-       // Prepare data for template output
-       $content = array(
-               'min_payout'           => getConfig(('wernis_min_payout')),
-               'min_withdraw'         => getConfig(('wernis_min_withdraw')),
-               'api_id'               => getConfig(('wernis_api_id')),
-               'api_md5'              => getConfig('wernis_api_md5'),
-               'api_url'              => getConfig('wernis_api_url'),
-               'refid'                => getConfig(('wernis_refid')),
-               'payout_factor'        => translateComma(getConfig('wernis_payout_factor')),
-               'withdraw_factor'      => translateComma(getConfig('wernis_withdraw_factor')),
-               'payout_fee_percent'   => translateComma(getConfig('wernis_payout_fee_percent')),
-               'withdraw_fee_percent' => translateComma(getConfig('wernis_withdraw_fee_percent')),
-               'payout_fee_fix'       => getConfig(('wernis_payout_fee_fix')),
-               'withdraw_fee_fix'     => getConfig(('wernis_withdraw_fee_fix'))
-       );
+                       // Remove clear password
+                       unsetPostRequestElement('wernis_pass');
 
-       // Prepare payout Y/N selection
-       if (getConfig('wernis_payout_active') == 'Y') {
-               // Payout allowed
-               define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', ' chkecked="checked"');
-               define('__CFG_WERNIS_PAYOUT_ACTIVE_N', '');
+                       // Save settings
+                       adminSaveSettingsFromPostData();
+               } else {
+                       // Failed to test the API!
+                       displayMessage(getWernisErrorMessage());
+               }
        } else {
-               // Payout disabled
-               define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', '');
-               define('__CFG_WERNIS_PAYOUT_ACTIVE_N', ' chkecked="checked"');
-       }
+               // Remove clear password
+               unsetPostRequestElement('wernis_pass');
 
-       // Prepare withdraw Y/N selection
-       if (getConfig('wernis_withdraw_active') == 'Y') {
-               // Payout allowed
-               define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', ' chkecked="checked"');
-               define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', '');
-       } else {
-               // Payout disabled
-               define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', '');
-               define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', ' chkecked="checked"');
+               // Save it, anyway
+               adminSaveSettingsFromPostData();
        }
-
+} else {
        // Load template
-       LOAD_TEMPLATE("admin_config_wernis", false, $content);
+       loadTemplate('admin_config_wernis');
 }
 
-//
+// [EOF]
 ?>