Anonymity/privacy extension 'removeip' added
[mailer.git] / inc / modules / admin / what-config_points.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/12/2003 *
4  * ===============                              Last change: 12/12/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_points.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Setup welcome-points for registration etc.       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Einstellen der Willkommensgutschrift usw.        *
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 (!empty($_GET['sub'])) {
44         switch ($_GET['sub'])
45         {
46         case "points":
47                 if ((empty($_POST['points_register'])) || (empty($_POST['points_ref']))) {
48                         unset($_POST['ok']);
49                 }
50                 break;
51
52         case "ref":
53                 if (isset($_GET['do'])) {
54                         if (((empty($_POST['lvl'])) || (empty($_POST['perc']))) && ($_GET['do'] == "add")) {
55                                 unset($_POST['ok']);
56                         }
57                 }
58                 break;
59         }
60 } else {
61         // Display overview
62         $_GET['sub'] = "overview";
63 }
64
65 if (isset($_POST['ok'])) {
66         $SQL = array();
67         switch ($_GET['sub'])
68         {
69         case "points":
70                 $SQL[] = "UPDATE "._MYSQL_PREFIX."_config SET points_register='".$_POST['points_register']."', points_ref='".$_POST['points_ref']."' WHERE config=0 LIMIT 1";
71                 break;
72
73         case "ref":
74                 switch ($_GET['do'])
75                 {
76                 case "add":
77                         $SQL[] = "INSERT INTO "._MYSQL_PREFIX."_refdepths (level, percents) VALUES ('".$_POST['lvl']."','".$_POST['perc']."')";
78                         break;
79
80                 case "edit": // Change entries
81                         foreach ($_POST['lvl'] as $id => $value) {
82                                 // Secure ID
83                                 $id = bigintval($id);
84
85                                 // Revert german commata
86                                 $_POST['perc'][$id] = REVERT_COMMA($_POST['perc'][$id]);
87
88                                 // Update entry
89                                 $result = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_refdepths SET level='%s', percents='%s' WHERE id=%s LIMIT 1",
90                                  array(bigintval($value), $_POST['perc'][$id], $id), __FILE__, __LINE__);
91                         }
92                         $TEXT = REF_DEPTHS_SAVED;
93                         break;
94
95                 case "del":
96                         foreach ($_POST['id'] as $id => $value) {
97                                 $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1",
98                                  array(bigintval($id)), __FILE__, __LINE__);
99                         }
100                         $TEXT = REF_DEPTHS_DELETED;
101                         break;
102                 }
103
104                 // Update cache file
105                 if (GET_EXT_VERSION("cache") >= "0.1.2") {
106                         if ($cacheInstance->cache_file("refdepths", true)) $cacheInstance->cache_destroy();
107                 }
108                 break;
109
110         case "settings":
111                 $REF = bigintval($_POST['ref_payout']);
112                 $SQL[] = sprintf("UPDATE "._MYSQL_PREFIX."_config SET
113 allow_direct_pay='%s',
114 reg_points_mode='%s',
115 ref_payout='%s'
116 WHERE config=0 LIMIT 1",
117  $_POST['allow_direct_pay'],
118  $_POST['reg_points_mode'],
119  $REF
120                 );
121                 if (($_CONFIG['ref_payout'] == 0) && ($_POST['ref_payout'] > 0))
122                 {
123                         // Update account's ref_payout for "must-confirm"
124                         $SQL[] = sprintf("UPDATE "._MYSQL_PREFIX."_user_data SET ref_payout=(%s - mails_confirmed)
125 WHERE mails_confirmed < %s", $REF, $REF);
126                 }
127                  elseif (($_CONFIG['ref_payout'] > 0) && ($_POST['ref_payout'] == 0))
128                 {
129                         // Update account's ref_payout for "not-must-confirm"
130                         $SQL[] = "UPDATE "._MYSQL_PREFIX."_user_data SET ref_payout=0 WHERE ref_payout > 0";
131                         $SQL[] = "UPDATE "._MYSQL_PREFIX."_user_points SET points=points+locked_points WHERE locked_points>0";
132                         $SQL[] = "UPDATE "._MYSQL_PREFIX."_user_points SET locked_points=0 WHERE locked_points>0";
133                 }
134                 break;
135         }
136         if ((isset($SQL)) && (is_array($SQL)) && (!empty($SQL[0])))
137         {
138                 if (strpos($SQL[0], "INSERT") > -1)
139                 {
140                         $result = SQL_QUERY_ESC("SELECT id FROM "._MYSQL_PREFIX."_refdepths WHERE level='%s' LIMIT 1",
141                          array(bigintval($_POST['lvl'])), __FILE__, __LINE__);
142                         SQL_FREERESULT($result);
143                 }
144                 if (count($SQL) > 0)
145                 {
146                         // Run all SQL commands
147                         foreach ($SQL as $s)
148                         {
149                                 $result = SQL_QUERY($s, __FILE__, __LINE__);
150                         }
151
152                         $content = "<SPAN class=\"admin_done\">".SETTINGS_SAVED."</SPAN>";
153
154                         // Destroy config cache file here...
155                         REBUILD_CACHE("config", "config");
156                 }
157                  else
158                 {
159                         $content = "<SPAN class=\"admin_failed\">".SETTINGS_NOT_SAVED."</SPAN>";
160                 }
161                 unset($SQL);
162                 LOAD_TEMPLATE("admin_settings_saved", false, $content);
163         }
164          elseif (isset($TEXT))
165         {
166                 LOAD_TEMPLATE("admin_settings_saved", false, $TEXT);
167         }
168 }
169  elseif ($_GET['sub'] == "settings")
170 {
171         // Setup some settings like direct pay and so on
172         // Including new add-mode for one-time referral bonus
173         switch ($_CONFIG['allow_direct_pay'])
174         {
175         case 'Y':
176                 define('__DIRECT_Y', " checked=\"checked\"");
177                 define('__DIRECT_N', "");
178                 break;
179
180         case 'N':
181                 define('__DIRECT_Y', "");
182                 define('__DIRECT_N', " checked=\"checked\"");
183                 break;
184         }
185
186         // One-time referral bonus add-mode
187         switch ($_CONFIG['reg_points_mode'])
188         {
189                 case "ref"   : define('__MODE_REF', " checked=\"checked\""); define('__MODE_DIRECT', "");         break;
190                 case "direct": define('__MODE_REF', "");         define('__MODE_DIRECT', " checked=\"checked\""); break;
191         }
192
193         // Referral payout value
194         define('__REF_PAYOUT', round($_CONFIG['ref_payout']));
195
196         // Load template
197         LOAD_TEMPLATE("admin_config_point_settings");
198 }
199  elseif ($_GET['sub'] == "ref")
200 {
201          if ((isset($_POST['del'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))
202         {
203                 // Delete entries
204                 $SW = 2; $OUT = "";
205                 foreach ($_POST['sel'] as $id => $value)
206                 {
207                         $result = SQL_QUERY_ESC("SELECT level, percents FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1",
208                          array(bigintval($id)), __FILE__, __LINE__);
209                         list($lvl, $perc) = SQL_FETCHROW($result);
210                         SQL_FREERESULT($result);
211
212                         // Prepare data for the row template
213                         $content = array(
214                                 'sw'  => $SW,
215                                 'id'  => $id,
216                                 'lvl' => $lvl,
217                                 'per' => TRANSLATE_COMMA($perc),
218                         );
219
220                         // Load row template and switch color
221                         $OUT .= LOAD_TEMPLATE("admin_points_del_row", true, $content);
222                         $SW = 3 - $SW;
223                 }
224                 define('__LEVEL_ROWS', $OUT);
225
226                 // Load main template
227                 LOAD_TEMPLATE("admin_points_del");
228         }
229          elseif ((isset($_POST['edit'])) && ((SELECTION_COUNT($_POST['sel']) > 0) || (isset($_POST['sel'][0]))))
230         {
231                 // Edit entries
232                 $SW = 2; $OUT = "";
233                 foreach ($_POST['sel'] as $id => $value)
234                 {
235                         $result = SQL_QUERY_ESC("SELECT level, percents FROM "._MYSQL_PREFIX."_refdepths WHERE id=%s LIMIT 1",
236                          array(bigintval($id)), __FILE__, __LINE__);
237                         list($lvl, $perc) = SQL_FETCHROW($result);
238                         SQL_FREERESULT($result);
239
240                         // Prepare data for the row template
241                         $content = array(
242                                 'sw'  => $SW,
243                                 'id'  => $id,
244                                 'lvl' => $lvl,
245                                 'per' => TRANSLATE_COMMA($perc),
246                         );
247
248                         // Load row template and switch color
249                         $OUT .= LOAD_TEMPLATE("admin_points_edit_row", true, $content);
250                         $SW = 3 - $SW;
251                 }
252                 define('__LEVEL_ROWS', $OUT);
253
254                 // Load main template
255                 LOAD_TEMPLATE("admin_points_edit");
256         }
257          else
258         {
259                 // Referral levels
260                 $result = SQL_QUERY("SELECT id, level, percents FROM "._MYSQL_PREFIX."_refdepths ORDER BY level", __FILE__, __LINE__);
261                 if (SQL_NUMROWS($result) > 0)
262                 {
263                         // Make referral levels editable and deletable
264                         $SW = 2; $OUT = "";
265
266                         // List already existing categories for editing
267                         while (list($id, $lvl, $perc) = SQL_FETCHROW($result))
268                         {
269                                 // Prepare data for the row template
270                                 $content = array(
271                                         'sw'  => $SW,
272                                         'id'  => $id,
273                                         'lvl' => $lvl,
274                                         'per' => TRANSLATE_COMMA($perc),
275                                 );
276
277                                 // Load row template and switch color
278                                 $OUT .= LOAD_TEMPLATE("admin_points_row", true, $content);
279                                 $SW = 3 - $SW;
280                         }
281
282                         // Free memory
283                         SQL_FREERESULT($result);
284                         define('__LEVEL_ROWS', $OUT);
285
286                         // Load main template
287                         LOAD_TEMPLATE("admin_points");
288                 }
289
290                 // Form for adding new referral levels
291                 LOAD_TEMPLATE("admin_add_reflvl");
292         }
293 }
294  elseif ($_GET['sub'] == "points")
295 {
296         // First points for registration and other fixed points including new add-mode for one-time referral bonus...
297         define('P_REG_VALUE', $_CONFIG['points_register']);
298         define('P_REF_VALUE', $_CONFIG['points_ref']);
299
300         // Load templates
301         LOAD_TEMPLATE("admin_config_sub_points");
302 }
303  else
304 {
305         // Display selection box
306         LOAD_TEMPLATE("admin_config_points");
307 }
308
309 //
310 ?>