60c7d541d2917ca603a775878bbe484501f0c730
[mailer.git] / inc / modules / admin / what-config_primera.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/09/2008 *
4  * ================                             Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_primera.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Configure primera 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         $_CONFIG = array_merge($_CONFIG, $_POST);
46
47         // Is the password set?
48         if (isset($_POST['pass'])) {
49                 // Then hash and remove it
50                 $_POST['primera_api_md5'] = md5($_POST['pass']);
51                 unset($_POST['pass']);
52         } // END - if
53
54         // Let's test the API first (hold your horses here, cowboy! Thanks. :) )
55         if (PRIMERA_TEST_API()) {
56                 // Save settings
57                 ADMIN_SAVE_SETTINGS($_POST);
58         } else {
59                 // Failed to test the API!
60                 LOAD_TEMPLATE("admin_settings_saved", false, GET_PRIMERA_ERROR_MESSAGE());
61         }
62 }  else {
63         // Prepare data for template output
64         $content = array(
65                 'min_payout'    => bigintval($_CONFIG['primera_min_payout']),
66                 'min_withdraw'  => bigintval($_CONFIG['primera_min_withdraw']),
67                 'api_name'              => $_CONFIG['primera_api_name'],
68                 'api_md5'               => $_CONFIG['primera_api_md5']
69         );
70
71         // Load template
72         LOAD_TEMPLATE("admin_config_primera", false, $content);
73 }
74
75 //
76 ?>