]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_wernis.php
Missing SVN properties set
[mailer.git] / inc / modules / admin / what-config_wernis.php
index c4b247a40505c2fd1ab75b166e570bb07715fd61..db31390b5cd75432aa09119ca9e5b2148e4e3fea 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                           *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Auszahlungensarten editieren                     *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $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                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
 }
+
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addMenuDescription('admin', __FILE__);
 
-if (isset($_POST['ok'])) {
-       // First merge temporary the new API data into config
-       $CONFIG = array_merge($CONFIG, $_POST);
+if (isFormSent()) {
+       // First merge temporarily the new API data into the current config
+       mergeConfig(postRequestArray());
 
-       // Let's test the API first (hold your horses here, cowboy! Thanks. :) )
+       // 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) {
+                       setRequestPostElement('wernis_' . $revert, postRequestElement('wernis_' . $revert));
+               } // END - if
+
+               // Hash the password and remove clear-text
+               setRequestPostElement('wernis_pass_md5', md5(postRequestElement('wernis_pass')));
+               unsetPostRequestElement('wernis_pass');
+
                // Save settings
-               ADMIN_SAVE_SETTINGS($_POST);
+               adminSaveSettingsFromPostData();
        } else {
                // Failed to test the API!
-               LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_ERROR_MESSAGE());
+               loadTemplate('admin_settings_saved', false, GET_WERNIS_ERROR_MESSAGE());
        }
 }  else {
        // Prepare data for template output
        $content = array(
-               'min_amount' => $CONFIG['wernis_min_amount'],
-               'api_id'     => $CONFIG['wernis_api_id'],
-               'api_md5'    => $CONFIG['wernis_api_md5'],
-               'api_url'    => $CONFIG['wernis_api_url']
+               'wernis_payout_active_y'   => '',
+               'wernis_payout_active_n'   => '',
+               'wernis_withdraw_active_y' => '',
+               'wernis_withdraw_active_n' => '',
        );
 
+       // Prepare payout Y/N selection
+       foreach (array('wernis_payout_active', 'wernis_withdraw_active') as $entry) {
+               $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
+       } // END - foreach
+
        // Load template
-       LOAD_TEMPLATE("admin_config_wernis", false, $content);
+       loadTemplate('admin_config_wernis', false, $content);
 }
 
-//
+// [EOF]
 ?>