A lot texts rewritten and exclamation signs removed
[mailer.git] / inc / modules / admin / what-config_beg.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 01/09/2005 *
4  * ================                             Last change: 01/09/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_beg.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Setup beg link                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Bettel-Link einstellen                           *
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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 if (isFormSent()) {
48         // Translate german decimal commas to computer decimal dots
49         setRequestPostElement('beg_points'      , convertCommaToDot(postRequestElement('beg_points')      ));
50         setRequestPostElement('beg_points_max'  , convertCommaToDot(postRequestElement('beg_points_max')  ));
51         setRequestPostElement('beg_notify_bonus', convertCommaToDot(postRequestElement('beg_notify_bonus')));
52
53         // Save settings
54         adminSaveSettingsFromPostData();
55
56         // Remember new settings
57         setConfigEntry('beg_rallye'       , postRequestElement('beg_rallye'));
58         setConfigEntry('beg_ral_en_notify', postRequestElement('beg_ral_en_notify'));
59         setConfigEntry('beg_ral_di_notify', postRequestElement('beg_ral_di_notify'));
60 } else {
61         // Prepare constants for the template
62         $content['points']           = translateComma(getConfig('beg_points')      , false);
63         $content['points_max']       = translateComma(getConfig('beg_points_max')  , false);
64         $content['notify_bonus']     = translateComma(getConfig('beg_notify_bonus'), false);
65         $content['timeout']          = createTimeSelections(getConfig('beg_timeout')       , 'beg_timeout'       , 'Dhm');
66         $content['userid_timeout']   = createTimeSelections(getConfig('beg_userid_timeout'), 'beg_userid_timeout', 'Dhm');
67         $content['ip_timeout']       = createTimeSelections(getConfig('beg_ip_timeout')    , 'beg_ip_timeout'    , 'Dhm');
68         $content['wait_selection']   = createTimeSelections(getConfig('beg_notify_wait')   , 'beg_notify_wait'   , 'ms' );
69
70         // Init all Y/N selections
71         foreach (array('rallye','activate','mode','ral_en_notify','ral_di_notify','new_mem_notify','include_own') as $entry) {
72                 $content[$entry . '_y'] = '';
73                 $content[$entry . '_n'] = '';
74                 $content[$entry . '_' . strtolower(getConfig('rallye_' . $entry))] = ' checked="checked"';
75         } // END - foreach
76
77         // Init elements
78         foreach (array('pay_mode_img','pay_mode_js','pay_mode_both','pay_mode_none') as $key) {
79                 $content[$entry]  = '';
80         } // END - foreach
81
82         // Set pay mode
83         $content['pay_mode_'.strtolower(getConfig('beg_pay_mode'))] = ' selected="selected"';
84
85         // Member selection box
86         $content['member_selection'] = addMemberSelectionBox(getConfig('beg_userid'), false, true, true, 'beg_userid');
87
88         // Load form template
89         loadTemplate('admin_config_beg', false, $content);
90 }
91
92 // [EOF]
93 ?>