Another column fix
[mailer.git] / inc / modules / admin / what-config_bonus.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 08/31/2004 *
4  * ================                             Last change: 11/14/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_bonus.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Configure "turbo-click-bonus"                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Einstellen der Turbo-Klick-Verguetungen          *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", basename(__FILE__));
42
43 if (isset($_POST['ok']))
44 {
45         // Replace german decimal commas to computer decimal dots
46         $_POST['login_bonus']         = str_replace(",", ".", $_POST['login_bonus']        );
47         $_POST['turbo_bonus']         = str_replace(",", ".", $_POST['turbo_bonus']        );
48         $_POST['bonus_ref']           = str_replace(",", ".", $_POST['bonus_ref']          );
49         $_POST['bonus_order']         = str_replace(",", ".", $_POST['bonus_order']        );
50         $_POST['bonus_notify_points'] = str_replace(",", ".", $_POST['bonus_notify_points']);
51
52         // Generate string for saving ranks
53         $_POST['turbo_rates'] = ""; $RATES = array();
54         foreach ($_POST['rate'] as $rate)
55         {
56                 $rate = trim(str_replace(",", ".", $rate));
57                 if (isset($rate)) $RATES[] = $rate;
58         }
59         $_POST['turbo_rates'] = trim(implode(";", $RATES));
60         unset($_POST['rate']);
61
62         // Automatically calculate bonus points for ranks 2 and 3 when not set
63         if (empty($_POST['turbo_rates'])) $_POST['turbo_rates'] = "".round($_CONFIG['turbo_bonus'] / 2).";".round($_CONFIG['turbo_bonus'] / 4)."";
64
65         // Save data
66         ADMIN_SAVE_SETTINGS($_POST);
67
68         // Remember new settings
69         $_CONFIG['bonus_active']    = $_POST['bonus_active'];
70         $_CONFIG['bonus_en_notify'] = $_POST['bonus_en_notify'];
71         $_CONFIG['bonus_di_notify'] = $_POST['bonus_di_notify'];
72
73         // Include sending out mails
74         if ((($_CONFIG['bonus_active'] == "Y") && ($_CONFIG['bonus_en_notify'] == "Y")) || (($_CONFIG['bonus_active'] == "N") && ($_CONFIG['bonus_di_notify'] == "Y"))) {
75                 include(PATH."inc/mails/bonus_mails.php");
76         }
77 } else {
78         // Prepare contants for the template
79         define('__LOGIN_VALUE' , TRANSLATE_COMMA($_CONFIG['login_bonus']        , false));
80         define('__TURBO_VALUE' , TRANSLATE_COMMA($_CONFIG['turbo_bonus']        , false));
81         define('__ORDER_VALUE' , TRANSLATE_COMMA($_CONFIG['bonus_order']        , false));
82         define('__REF_VALUE'   , TRANSLATE_COMMA($_CONFIG['bonus_ref']          , false));
83         define('__STATS_VALUE' , TRANSLATE_COMMA($_CONFIG['bonus_stats']        , false));
84         define('__NOTIFY_VALUE', TRANSLATE_COMMA($_CONFIG['bonus_notify_points'], false));
85         define('__TRANKS_VALUE', $_CONFIG['bonus_ranks']);
86         define('__TLINES_VALUE', $_CONFIG['bonus_lines']);
87
88         // Transfer options to template __MEMBER_SELECTION
89         define('__MEMBER_SELECTION', ADD_MEMBER_SELECTION_BOX($_CONFIG['bonus_uid'], false, true, true));
90
91         // Initialize array for the points list
92         $RANKS = explode(";", $_CONFIG['bonus_ranks']);
93
94         // Automatically calculate bonus points for ranks 2 and 3 when not set
95         if (empty($_CONFIG['bonus_ranks'])) $RANKS = array(round($_CONFIG['turbo_bonus'] / 2), round($_CONFIG['turbo_bonus'] / 4));
96
97         // Generate list
98         $OUT = "<OL start=\"2\">\n";
99         foreach ($RANKS as $k => $rate) {
100                 if (!empty($rate))      {
101                         // Print only when something is in
102                         $OUT .= "  <LI><INPUT type=\"text\" name=\"rate[".($k + 2)."]\" class=\"admin_normal\" size=\"4\" maxlength=\"7\" value=\"".$rate."\">&nbsp;<FONT class=\"admin_notes\">(".POINTS.")</FONT?</LI>\n";
103                 }
104         }
105         for ($i = 3; $i < 8; $i++) {
106                 $OUT .= "  <LI><INPUT type=\"text\" name=\"rate[".($k + $i)."]\" class=\"admin_normal\" size=\"4\" maxlength=\"7\">&nbsp;<FONT class=\"admin_notes\">(".POINTS.")</FONT?</LI>\n";
107         }
108         $OUT .= "</OL>\n";
109         define('__TRATES_LIST', $OUT);
110
111         define('__LOGIN_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS($_CONFIG['login_timeout']    , "login_timeout"    , "WDh"));
112         define('__BONUS_TIMEOUT_SELECTION', CREATE_TIME_SELECTIONS($_CONFIG['bonus_timeout']    , "bonus_timeout"    , "WDh"));
113         define('__WAIT_SELECTION'         , CREATE_TIME_SELECTIONS($_CONFIG['bonus_notify_wait'], "bonus_notify_wait", "ms" ));
114
115         // Activate / Deactivate bonus active rallye (Y/N)
116         switch ($_CONFIG['bonus_active'])
117         {
118         case 'Y':
119                 define('__BONUS_ACTIVE_Y', " checked=\"checked\"");
120                 define('__BONUS_ACTIVE_N', "");
121                 break;
122
123         case 'N':
124                 define('__BONUS_ACTIVE_Y', "");
125                 define('__BONUS_ACTIVE_N', " checked=\"checked\"");
126                 break;
127         }
128         // Other bonus to de-/activate
129         switch ($_CONFIG['bonus_login_yn'])
130         {
131         case 'Y':
132                 define('__BONUS_LOGIN_Y', " checked=\"checked\"");
133                 define('__BONUS_LOGIN_N', "");
134                 break;
135
136         case 'N':
137                 define('__BONUS_LOGIN_Y', "");
138                 define('__BONUS_LOGIN_N', " checked=\"checked\"");
139                 break;
140         }
141         switch ($_CONFIG['bonus_stats_yn'])
142         {
143         case 'Y':
144                 define('__BONUS_STATS_Y', " checked=\"checked\"");
145                 define('__BONUS_STATS_N', "");
146                 break;
147
148         case 'N':
149                 define('__BONUS_STATS_Y', "");
150                 define('__BONUS_STATS_N', " checked=\"checked\"");
151                 break;
152         }
153         switch ($_CONFIG['bonus_order_yn'])
154         {
155         case 'Y':
156                 define('__BONUS_ORDER_Y', " checked=\"checked\"");
157                 define('__BONUS_ORDER_N', "");
158                 break;
159
160         case 'N':
161                 define('__BONUS_ORDER_Y', "");
162                 define('__BONUS_ORDER_N', " checked=\"checked\"");
163                 break;
164         }
165         switch ($_CONFIG['bonus_ref_yn'])
166         {
167         case 'Y':
168                 define('__BONUS_REF_Y', " checked=\"checked\"");
169                 define('__BONUS_REF_N', "");
170                 break;
171
172         case 'N':
173                 define('__BONUS_REF_Y', "");
174                 define('__BONUS_REF_N', " checked=\"checked\"");
175                 break;
176         }
177         switch ($_CONFIG['bonus_click_yn'])
178         {
179         case 'Y':
180                 define('__BONUS_CLICK_Y', " checked=\"checked\"");
181                 define('__BONUS_CLICK_N', "");
182                 break;
183
184         case 'N':
185                 define('__BONUS_CLICK_Y', "");
186                 define('__BONUS_CLICK_N', " checked=\"checked\"");
187                 break;
188         }
189         switch ($_CONFIG['bonus_en_notify'])
190         {
191         case 'Y':
192                 define('__BONUS_EN_NOTIFY_Y', " checked=\"checked\"");
193                 define('__BONUS_EN_NOTIFY_N', "");
194                 break;
195
196         case 'N':
197                 define('__BONUS_EN_NOTIFY_Y', "");
198                 define('__BONUS_EN_NOTIFY_N', " checked=\"checked\"");
199                 break;
200         }
201         switch ($_CONFIG['bonus_di_notify'])
202         {
203         case 'Y':
204                 define('__BONUS_DI_NOTIFY_Y', " checked=\"checked\"");
205                 define('__BONUS_DI_NOTIFY_N', "");
206                 break;
207
208         case 'N':
209                 define('__BONUS_DI_NOTIFY_Y', "");
210                 define('__BONUS_DI_NOTIFY_N', " checked=\"checked\"");
211                 break;
212         }
213         switch ($_CONFIG['bonus_new_mem_notify'])
214         {
215         case 'Y':
216                 define('__BONUS_NEW_MEMBER_NOTIFY_Y', " checked=\"checked\"");
217                 define('__BONUS_NEW_MEMBER_NOTIFY_N', "");
218                 break;
219
220         case 'N':
221                 define('__BONUS_NEW_MEMBER_NOTIFY_Y', "");
222                 define('__BONUS_NEW_MEMBER_NOTIFY_N', " checked=\"checked\"");
223                 break;
224         }
225         switch ($_CONFIG['bonus_include_own'])
226         {
227         case 'Y':
228                 define('__BONUS_INCLUDE_OWN_Y', " checked=\"checked\"");
229                 define('__BONUS_INCLUDE_OWN_N', "");
230                 break;
231
232         case 'N':
233                 define('__BONUS_INCLUDE_OWN_Y', "");
234                 define('__BONUS_INCLUDE_OWN_N', " checked=\"checked\"");
235                 break;
236         }
237
238         // Load final template
239         LOAD_TEMPLATE("admin_config_bonus", false);
240 }
241 //
242 ?>