Another column fix
[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", basename(__FILE__));
42
43 if (isset($_POST['ok'])) {
44         // First merge temporarily the new API data into the current config
45         $_CONFIG = array_merge($_CONFIG, $_POST);
46
47         // Let's test the API first (hold your horses here, cowboy! Thanks. :) )
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                 // Save settings
55                 ADMIN_SAVE_SETTINGS($_POST);
56         } else {
57                 // Failed to test the API!
58                 LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE());
59         }
60 }  else {
61         // Prepare data for template output
62         $content = array(
63                 'min_payout'           => bigintval($_CONFIG['wernis_min_payout']),
64                 'min_withdraw'         => bigintval($_CONFIG['wernis_min_withdraw']),
65                 'api_id'               => bigintval($_CONFIG['wernis_api_id']),
66                 'api_md5'              => $_CONFIG['wernis_api_md5'],
67                 'api_url'              => $_CONFIG['wernis_api_url'],
68                 'refid'                => bigintval($_CONFIG['wernis_refid']),
69                 'payout_factor'        => TRANSLATE_COMMA($_CONFIG['wernis_payout_factor']),
70                 'withdraw_factor'      => TRANSLATE_COMMA($_CONFIG['wernis_withdraw_factor']),
71                 'payout_fee_percent'   => TRANSLATE_COMMA($_CONFIG['wernis_payout_fee_percent']),
72                 'withdraw_fee_percent' => TRANSLATE_COMMA($_CONFIG['wernis_withdraw_fee_percent']),
73                 'payout_fee_fix'       => bigintval($_CONFIG['wernis_payout_fee_fix']),
74                 'withdraw_fee_fix'     => bigintval($_CONFIG['wernis_withdraw_fee_fix'])
75         );
76
77         // Prepare payout Y/N selection
78         if ($_CONFIG['wernis_payout_active'] == "Y") {
79                 // Payout allowed
80                 define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', " checked=\"checked\"");
81                 define('__CFG_WERNIS_PAYOUT_ACTIVE_N', "");
82         } else {
83                 // Payout disabled
84                 define('__CFG_WERNIS_PAYOUT_ACTIVE_Y', "");
85                 define('__CFG_WERNIS_PAYOUT_ACTIVE_N', " checked=\"checked\"");
86         }
87
88         // Prepare withdraw Y/N selection
89         if ($_CONFIG['wernis_withdraw_active'] == "Y") {
90                 // Payout allowed
91                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', " checked=\"checked\"");
92                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', "");
93         } else {
94                 // Payout disabled
95                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_Y', "");
96                 define('__CFG_WERNIS_WITHDRAW_ACTIVE_N', " checked=\"checked\"");
97         }
98
99         // Load template
100         LOAD_TEMPLATE("admin_config_wernis", false, $content);
101 }
102
103 //
104 ?>