]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_wernis.php
Fixes loading of network type config
[mailer.git] / inc / modules / admin / what-config_wernis.php
index ea86768545a0c198b50d8ab36e779058078e88a4..8bfd67aeb15fcf17156a6355e0bf2d48c4836e8d 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::                                                          $ *
  * -------------------------------------------------------------------- *
- * 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 - 2011 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 ((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();
+} // END - if
+
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addYouAreHereLink('admin', __FILE__);
 
-if (isset($_POST['ok'])) {
-       // Save settings
-       ADMIN_SAVE_SETTINGS($_POST, "_config", "config='0'");
-}  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']
-       );
+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! Thank you. :) )
+       if (WERNIS_TEST_API()) {
+               // 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
+
+               // Hash the password and remove clear-text
+               setPostRequestElement('wernis_pass_md5', md5(postRequestElement('wernis_pass')));
+               unsetPostRequestElement('wernis_pass');
+
+               // Save settings
+               adminSaveSettingsFromPostData();
+       } else {
+               // Failed to test the API!
+               displayMessage(GET_WERNIS_ERROR_MESSAGE());
+       }
+}  else {
        // Load template
-       LOAD_TEMPLATE("admin_config_wernis", false, $content);
+       loadTemplate('admin_config_wernis');
 }
 
-//
+// [EOF]
 ?>