Deprecated variables for templates removed, mor EL-rewrites, getMessage() rewritten:
[mailer.git] / inc / modules / admin / what-config_wernis.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (isFormSent()) {
49         // First merge temporarily the new API data into the current config
50         mergeConfig(postRequestArray());
51
52         // Let's test the API first (hold your horses here, cowboy! Thank you. :) )
53         if (WERNIS_TEST_API()) {
54                 // Revert german commata
55                 foreach (array('payout_factor', 'withdraw_factor', 'payout_fee_percent', 'withdraw_fee_percent') as $revert) {
56                         setPostRequestParameter('wernis_' . $revert, postRequestParameter('wernis_' . $revert));
57                 } // END - if
58
59                 // Hash the password and remove clear-text
60                 setPostRequestParameter('wernis_pass_md5', md5(postRequestParameter('wernis_pass')));
61                 unsetPostRequestParameter('wernis_pass');
62
63                 // Save settings
64                 adminSaveSettingsFromPostData();
65         } else {
66                 // Failed to test the API!
67                 loadTemplate('admin_settings_saved', false, GET_WERNIS_ERROR_MESSAGE());
68         }
69 }  else {
70         // Prepare data for template output
71         $content = array(
72                 'wernis_payout_active_y'   => '',
73                 'wernis_payout_active_n'   => '',
74                 'wernis_withdraw_active_y' => '',
75                 'wernis_withdraw_active_n' => '',
76         );
77
78         // Prepare payout Y/N selection
79         foreach (array('wernis_payout_active', 'wernis_withdraw_active') as $entry) {
80                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
81         } // END - foreach
82
83         // Load template
84         loadTemplate('admin_config_wernis', false, $content);
85 }
86
87 // [EOF]
88 ?>