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