8c816b205e69740adb4f971b2c6d756473568e3f
[mailer.git] / inc / modules / admin / what-config_doubler.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 02/12/2005 *
4  * ===================                          Last change: 02/12/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_doubler.php                          *
8  * -------------------------------------------------------------------- *
9  * Short description : Points doubler                                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Punkte verdoppeln                                *
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         // Replace commata with decimal dot
50         setPostRequestParameter('doubler_charge', convertCommaToDot(postRequestParameter('doubler_charge')));
51         setPostRequestParameter('doubler_ref'   , convertCommaToDot(postRequestParameter('doubler_ref')));
52         setPostRequestParameter('doubler_min'   , convertCommaToDot(postRequestParameter('doubler_min')));
53         setPostRequestParameter('doubler_max'   , convertCommaToDot(postRequestParameter('doubler_max')));
54         setPostRequestParameter('doubler_left'  , convertCommaToDot(postRequestParameter('doubler_left')));
55
56         // Save settings
57         adminSaveSettingsFromPostData();
58 } else {
59         // Init all Y/N selections
60         foreach (array('jackpot','own','sent_all') as $entry) {
61                 $content[$entry . '_y'] = '';
62                 $content[$entry . '_n'] = '';
63                 $content[$entry . '_' . strtolower(getConfig('doubler_' . $entry))] = ' checked="checked"';
64         } // END - foreach
65
66         // Init other selections
67         foreach (array('send_mode_direct','send_mode_reset') as $entry) {
68                 $content[$entry] = '';
69         } // END - foreach
70
71         // Set current selections
72         foreach (array('send_mode') as $entry) {
73                 $content[$entry . '_' . strtolower(getConfig('doubler_' . $entry))] = ' checked="checked"';
74         } // END - foreach
75
76         // Transfer options
77         $content['member_selection'] = addMemberSelectionBox(getConfig('doubler_userid'), false, true, true, 'doubler_userid');
78
79         // Number of rows to display (option lines!!!)
80         foreach (array('new','pay','old') as $entry) {
81                 $content['display_' . $entry] = generateOptionList(
82                         '/ARRAY/',
83                         array(
84                                 5,
85                                 10,
86                                 20,
87                                 30,
88                                 40,
89                                 50,
90                                 100
91                         ), array(
92                                 5,
93                                 10,
94                                 20,
95                                 30,
96                                 40,
97                                 50,
98                                 100
99                         ),
100                         getConfig('doubler_display_' . $entry)
101                 );
102         } // END - foreach
103
104         // Timeout selection box or input box?
105         $content['timeout_selection'] = createTimeSelections(getConfig('doubler_timeout')  , 'doubler_timeout'  , 'WDh');
106
107         // Load template
108         loadTemplate('admin_config_doubler', false, $content);
109 }
110
111 // [EOF]
112 ?>