9f1fa093f5a5c6ccc5d0d5f840229abc0c7fde43
[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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
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                 // Save settings
50                 ADMIN_SAVE_SETTINGS($_POST);
51         } else {
52                 // Failed to test the API!
53                 LOAD_TEMPLATE("admin_settings_saved", false, GET_WERNIS_ERROR_MESSAGE());
54         }
55 }  else {
56         // Prepare data for template output
57         $content = array(
58                 'min_payout'    => bigintval($_CONFIG['wernis_min_payout']),
59                 'min_withdraw'  => bigintval($_CONFIG['wernis_min_withdraw']),
60                 'api_id'                => bigintval($_CONFIG['wernis_api_id']),
61                 'api_md5'               => $_CONFIG['wernis_api_md5'],
62                 'api_url'               => $_CONFIG['wernis_api_url'],
63                 'refid'                 => bigintval($_CONFIG['wernis_refid'])
64         );
65
66         // Load template
67         LOAD_TEMPLATE("admin_config_wernis", false, $content);
68 }
69
70 //
71 ?>