Even more rewrites to make usage of EL
[mailer.git] / inc / modules / admin / what-config_points.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * $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 // Init variables
49 $message = '';
50
51 // Is the 'sub' parameter set?
52 if (isGetRequestParameterSet('sub')) {
53         // Yes, then do some sanity-checks
54         switch (getRequestParameter('sub')) {
55                 case 'points':
56                         if ((!isPostRequestParameterSet(('points_register'))) || (!isPostRequestParameterSet(('points_ref')))) {
57                                 unsetPostRequestParameter('ok');
58                         }
59                         break;
60
61                 case 'ref':
62                         if (isGetRequestParameterSet('do')) {
63                                 if (((!isPostRequestParameterSet(('level'))) || (!isPostRequestParameterSet(('percents')))) && (getRequestParameter('do') == 'add')) {
64                                         unsetPostRequestParameter('ok');
65                                 }
66                         }
67                         break;
68         } // END - switch
69 } else {
70         // Display overview
71         setGetRequestParameter('sub', 'overview');
72 }
73
74 if (isFormSent()) {
75         initSqls();
76         switch (getRequestParameter('sub')) {
77                 case 'points':
78                         adminSaveSettingsFromPostData();
79                         break;
80
81                 case 'ref':
82                         switch (getRequestParameter('do'))
83                         {
84                                 case 'add':
85                                         addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".postRequestParameter('level')."','".postRequestParameter('percents')."')");
86                                         break;
87
88                                 case 'edit': // Change entries
89                                         foreach (postRequestParameter('level') as $id => $value) {
90                                                 // Secure id
91                                                 $id = bigintval($id);
92
93                                                 // Revert german commata
94                                                 setPostRequestParameter('percents', array($id => convertCommaToDot(postRequestParameter('percents', $id))));
95
96                                                 // Update entry
97                                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refdepths` SET `level`=%s, `percents`=%s WHERE `id`=%s LIMIT 1",
98                                                         array(bigintval($value), convertCommaToDot(postRequestParameter('percents', $id)), $id), __FILE__, __LINE__);
99                                         }
100                                         $message = '{--REF_DEPTHS_SAVED--}';
101                                         break;
102
103                                 case 'del':
104                                         foreach (postRequestParameter('id') as $id => $value) {
105                                                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
106                                                 array(bigintval($id)), __FILE__, __LINE__);
107                                         }
108                                         $message = '{--REF_DEPTHS_DELETED--}';
109                                         break;
110                         }
111
112                         // Update cache file
113                         // @TODO Rewrite this to a filter
114                         if (isExtensionInstalledAndNewer('cache', '0.1.2')) {
115                                 if ($GLOBALS['cache_instance']->loadCacheFile('refdepths')) $GLOBALS['cache_instance']->removeCacheFile();
116                         } // END - if
117                         break;
118
119                 case 'settings':
120                         $REF = bigintval(postRequestParameter('ref_payout'));
121                         updateConfiguration(
122                                 array('allow_direct_pay', 'reg_points_mode', 'ref_payout'),
123                                 array(postRequestParameter('allow_direct_pay'), postRequestParameter('reg_points_mode'), $REF)
124                         );
125                         if ((getConfig('ref_payout') == '0') && (postRequestParameter('ref_payout') > 0)) {
126                                 // Update account's ref_payout for "must-confirm"
127                                 addSql(sprintf("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_payout`=(%s - `mails_confirmed`)
128 WHERE `mails_confirmed` < %s", $REF, $REF));
129                         } elseif ((getConfig('ref_payout') > 0) && (postRequestParameter('ref_payout') == '0')) {
130                                 // Update account's ref_payout for "not-must-confirm"
131                                 addSql("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `ref_payout`=0 WHERE `ref_payout` > 0");
132                                 addSql("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `points`=`points`+`locked_points` WHERE `locked_points` > 0");
133                                 addSql("UPDATE `{?_MYSQL_PREFIX?}_user_points` SET `locked_points`=0 WHERE `locked_points` > 0");
134                         }
135                         break;
136         } // END - if
137
138         if ((isSqlsValid()) && (isSqlsValid())) {
139                 if (strpos($GLOBALS['sqls'][0], 'INSERT') > -1) {
140                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`='%s' LIMIT 1",
141                                 array(bigintval(postRequestParameter('level'))), __FILE__, __LINE__);
142                         SQL_FREERESULT($result);
143                 } // END - if
144
145                 if (countSqls() > 0) {
146                         // Run all SQL commands
147                         runFilterChain('run_sqls');
148
149                         // Entry saved...
150                         $message = '{--SETTINGS_SAVED--}';
151
152                         // Destroy config cache file here...
153                         rebuildCache('config', 'config');
154                 } else {
155                         // Prepare failed-message
156                         $message = '<span class="admin_failed">{--SETTINGS_NOT_SAVED--}</span>';
157                 }
158
159                 // Remove SQL queries
160                 unsetSqls();
161         }
162
163         // Shall we display a message?
164         if (!empty($message)) {
165                 // When do so...
166                 loadTemplate('admin_settings_saved', false, $message);
167         }
168 } elseif (getRequestParameter('sub') == 'settings') {
169         // Setup some settings like direct pay and so on
170         // Including new add-mode for one-time referal bonus
171         foreach (array('allow_direct_pay') as $entry) {
172                 $content[$entry . '_y'] = '';
173                 $content[$entry . '_n'] = '';
174                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
175         } // END - foreach
176
177         // One-time referal bonus add-mode
178         foreach (array('reg_points_mode_ref','reg_points_mode_direct') as $entry) {
179                 $content[$entry] = '';
180         } // END - if
181         $content['reg_points_mode_' . strtolower(getConfig('reg_points_mode'))] = ' checked="checked"';
182
183         // Load template
184         loadTemplate('admin_config_point_settings', false, $content);
185 } elseif (getRequestParameter('sub') == 'ref') {
186         // 12                  3     32    2                  3     32    2               3            4     43    21
187         if ((isFormSent('del')) && (isPostRequestParameterSet('sel')) && (countPostSelection() > 0)) {
188                 // Delete entries
189                 $OUT = '';
190                 foreach (postRequestParameter('sel') as $id => $value) {
191                         $result = SQL_QUERY_ESC("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
192                                 array(bigintval($id)), __FILE__, __LINE__);
193                         $content = SQL_FETCHARRAY($result);
194                         SQL_FREERESULT($result);
195
196                         // Load row template and switch color
197                         $OUT .= loadTemplate('admin_points_del_row', true, $content);
198                 } // END - foreach
199
200                 // Load main template
201                 loadTemplate('admin_points_del', false, $OUT);
202         } elseif ((isFormSent('edit')) && (isPostRequestParameterSet('sel')) && (countPostSelection() > 0)) {
203                 // Edit entries
204                 $OUT = '';
205                 foreach (postRequestParameter('sel') as $id => $value) {
206                         $result = SQL_QUERY_ESC("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
207                                 array(bigintval($id)), __FILE__, __LINE__);
208                         $content = SQL_FETCHARRAY($result);
209                         SQL_FREERESULT($result);
210
211                         // Load row template and switch color
212                         $OUT .= loadTemplate('admin_points_edit_row', true, $content);
213                 } // END - foreach
214
215                 // Load main template
216                 loadTemplate('admin_points_edit', false, $OUT);
217         } else {
218                 // Referal levels
219                 $result = SQL_QUERY("SELECT `id`, `level`, `percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__);
220                 if (SQL_NUMROWS($result) > 0) {
221                         // Make referal levels editable and deletable
222                         $OUT = '';
223
224                         // List already existing categories for editing
225                         while ($content = SQL_FETCHARRAY($result)) {
226                                 // Prepare data for the row template
227                                 $content['percents'] = translateComma($content['percents']);
228
229                                 // Load row template and switch color
230                                 $OUT .= loadTemplate('admin_points_row', true, $content);
231                         } // END - while
232
233                         // Free memory
234                         SQL_FREERESULT($result);
235
236                         // Load main template
237                         loadTemplate('admin_points', false, $OUT);
238                 }
239
240                 // Form for adding new referal levels
241                 loadTemplate('admin_add_reflevel');
242         }
243 } elseif (getRequestParameter('sub') == 'points') {
244         // Load template
245         loadTemplate('admin_config_sub_points');
246 } else {
247         // Display selection box
248         loadTemplate('admin_config_points');
249 }
250
251 // [EOF]
252 ?>