Some menu points renamed to not conflict with configuration menus:
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 if (isFormSent('save_config')) {
47         // Replace german decimal comma with computer decimal dot
48         convertCommaToDotInPostDataArray(array('doubler_charge', 'doubler_ref', 'doubler_min', 'doubler_max', 'doubler_left'));
49
50         // Save settings
51         adminSaveSettingsFromPostData();
52 } else {
53         // Init other selections
54         foreach (array('send_mode_direct','send_mode_reset') as $entry) {
55                 $content[$entry] = '';
56         } // END - foreach
57
58         // Set current selections
59         foreach (array('send_mode') as $entry) {
60                 $content[$entry . '_' . strtolower(getConfig('doubler_' . $entry))] = ' checked="checked"';
61         } // END - foreach
62
63         // Transfer options
64         $content['doubler_userid'] = addMemberSelectionBox(getDoublerUserid(), FALSE, TRUE, TRUE, 'doubler_userid');
65
66         // Number of rows to display (option lines!!!)
67         foreach (array('new','pay','old') as $entry) {
68                 $content['display_' . $entry] = generateOptions(
69                         '/ARRAY/',
70                         array(
71                                 5,
72                                 10,
73                                 20,
74                                 30,
75                                 40,
76                                 50,
77                                 100
78                         ), array(
79                                 5,
80                                 10,
81                                 20,
82                                 30,
83                                 40,
84                                 50,
85                                 100
86                         ),
87                         getConfig('doubler_display_' . $entry)
88                 );
89         } // END - foreach
90
91         // Timeout selection box or input box?
92         $content['timeout_selection'] = createConfigurationTimeSelections('doubler_timeout', 'WDh');
93
94         // Load template
95         loadTemplate('admin_config_doubler', FALSE, $content);
96 }
97
98 // [EOF]
99 ?>