f93663e153218cc95185ef99995323f489e41092
[mailer.git] / inc / modules / admin / what-config_beg.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * 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 }
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (isFormSent()) {
49         // Translate german decimal commas to computer decimal dots
50         setPostRequestParameter('beg_points'      , convertCommaToDot(postRequestParameter('beg_points')      ));
51         setPostRequestParameter('beg_points_max'  , convertCommaToDot(postRequestParameter('beg_points_max')  ));
52         setPostRequestParameter('beg_notify_bonus', convertCommaToDot(postRequestParameter('beg_notify_bonus')));
53
54         // Save settings
55         adminSaveSettingsFromPostData();
56
57         // Remember new settings
58         setConfigEntry('beg_rallye'       , postRequestParameter('beg_rallye'));
59         setConfigEntry('beg_ral_en_notify', postRequestParameter('beg_ral_en_notify'));
60         setConfigEntry('beg_ral_di_notify', postRequestParameter('beg_ral_di_notify'));
61 } else {
62         // Prepare constants for the template
63         $content['points']           = translateComma(getConfig('beg_points')      , false);
64         $content['points_max']       = translateComma(getConfig('beg_points_max')  , false);
65         $content['notify_bonus']     = translateComma(getConfig('beg_notify_bonus'), false);
66         $content['timeout']          = createTimeSelections(getConfig('beg_timeout')       , 'beg_timeout'       , 'Dhm');
67         $content['userid_timeout']   = createTimeSelections(getConfig('beg_userid_timeout'), 'beg_userid_timeout', 'Dhm');
68         $content['ip_timeout']       = createTimeSelections(getConfig('beg_ip_timeout')    , 'beg_ip_timeout'    , 'Dhm');
69         $content['wait_selection']   = createTimeSelections(getConfig('beg_notify_wait')   , 'beg_notify_wait'   , 'ms' );
70
71         // Init all Y/N selections
72         foreach (array('rallye','activate','mode','ral_en_notify','ral_di_notify','new_mem_notify','include_own') as $entry) {
73                 $content[$entry . '_y'] = '';
74                 $content[$entry . '_n'] = '';
75                 $content[$entry . '_' . strtolower(getConfig('rallye_' . $entry))] = ' checked="checked"';
76         } // END - foreach
77
78         // Init elements
79         foreach (array('pay_mode_img','pay_mode_js','pay_mode_both','pay_mode_none') as $key) {
80                 $content[$entry]  = '';
81         } // END - foreach
82
83         // Set pay mode
84         $content['pay_mode_'.strtolower(getConfig('beg_pay_mode'))] = ' selected="selected"';
85
86         // Member selection box
87         $content['member_selection'] = addMemberSelectionBox(getConfig('beg_userid'), false, true, true, 'beg_userid');
88
89         // Load form template
90         loadTemplate('admin_config_beg', false, $content);
91 }
92
93 // [EOF]
94 ?>