Functions imported, some dev-scripts added
[mailer.git] / inc / modules / admin / what-config_wernis.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 12/26/2007 *
4  * ================                             Last change: 12/26/2007 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_wernis.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Configure wernis sub-system                      *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auszahlungensarten editieren                     *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 if (isset($_POST['ok'])) {
44         // First merge temporarily the new API data into the current config
45         mergeConfig($_POST);
46
47         // Let's test the API first (hold your horses here, cowboy! Thank you. :) )
48         if (WERNIS_TEST_API()) {
49                 // Revert german commata
50                 foreach (array('payout_factor', 'withdraw_factor', 'payout_fee_percent', 'withdraw_fee_percent') as $revert) {
51                         $_POST['wernis_'.$revert] = REVERT_COMMA($_POST['wernis_'.$revert]);
52                 } // END - if
53
54                 // Hash the password and remove clear-text
55                 $_POST['wernis_pass_md5'] = md5($_POST['wernis_pass']);
56                 unset($_POST['wernis_pass']);
57
58                 // Save settings
59                 ADMIN_SAVE_SETTINGS($_POST);
60         } else {
61                 // Failed to test the API!
62                 LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE());
63         }
64 }  else {
65         // Prepare data for template output
66         $content = array(
67                 'min_payout'           => bigintval(getConfig('wernis_min_payout')),
68                 'min_withdraw'         => bigintval(getConfig('wernis_min_withdraw')),
69                 'api_id'               => bigintval(getConfig('wernis_api_id')),
70                 'api_md5'              => getConfig('wernis_api_md5'),
71                 'api_url'              => getConfig('wernis_api_url'),
72                 'refid'                => bigintval(getConfig('wernis_refid')),
73                 'payout_factor'        => TRANSLATE_COMMA(getConfig('wernis_payout_factor')),
74                 'withdraw_factor'      => TRANSLATE_COMMA(getConfig('wernis_withdraw_factor')),
75                 'payout_fee_percent'   => TRANSLATE_COMMA(getConfig('wernis_payout_fee_percent')),
76                 'withdraw_fee_percent' => TRANSLATE_COMMA(getConfig('wernis_withdraw_fee_percent')),
77                 'payout_fee_fix'       => bigintval(getConfig('wernis_payout_fee_fix')),
78                 'withdraw_fee_fix'     => bigintval(getConfig('wernis_withdraw_fee_fix'))
79         );
80
81         // Prepare payout Y/N selection
82         if (getConfig('wernis_payout_active') == "Y") {
83                 // Payout allowed
84                 define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', " checked=\"checked\"");
85                 define('__CFG_WERNIS_PAYOUT_ACTIVE_N', "");
86         } else {
87                 // Payout disabled
88                 define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', "");
89                 define('__CFG_WERNIS_PAYOUT_ACTIVE_N', " checked=\"checked\"");
90         }
91
92         // Prepare withdraw Y/N selection
93         if (getConfig('wernis_withdraw_active') == "Y") {
94                 // Payout allowed
95                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', " checked=\"checked\"");
96                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', "");
97         } else {
98                 // Payout disabled
99                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', "");
100                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', " checked=\"checked\"");
101         }
102
103         // Load template
104         LOAD_TEMPLATE("admin_config_wernis", false, $content);
105 }
106
107 //
108 ?>