]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/what-config_points.php
0c60e88fe5443a62958a637fd90fe6cb2e0c8101
[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://www.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 (isGetRequestParameterSet('sub')) {
51         // Yes, then do some sanity-checks
52         switch (getRequestParameter('sub')) {
53                 case 'points':
54                         if ((!isPostRequestParameterSet('points_register')) || (!isPostRequestParameterSet('points_ref'))) {
55                                 unsetPostRequestParameter('ok');
56                         } // END - if
57                         break;
58
59                 case 'ref':
60                         if (isGetRequestParameterSet('do')) {
61                                 if (((!isPostRequestParameterSet('level')) || (!isPostRequestParameterSet('percents'))) && (getRequestParameter('do') == 'add')) {
62                                         unsetPostRequestParameter('ok');
63                                 }
64                         }
65                         break;
66         } // END - switch
67 } else {
68         // Display overview
69         setGetRequestParameter('sub', 'overview');
70 }
71
72 if (isFormSent()) {
73         initSqls();
74         switch (getRequestParameter('sub')) {
75                 case 'points':
76                         adminSaveSettingsFromPostData();
77                         break;
78
79                 case 'ref':
80                         switch (getRequestParameter('do')) {
81                                 case 'add':
82                                         addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`,`percents`) VALUES ('".bigintval(postRequestParameter('level'))."','".bigintval(postRequestParameter('percents'))."')");
83                                         break;
84
85                                 case 'edit': // Change entries
86                                         foreach (postRequestParameter('level') as $id => $value) {
87                                                 // Secure id
88                                                 $id = bigintval($id);
89
90                                                 // Revert german commata
91                                                 setPostRequestParameter('percents', array($id => convertCommaToDot(postRequestParameter('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(postRequestParameter('percents', $id)), $id), __FILE__, __LINE__);
96                                         } // END - foreach
97                                         $message = '{--ADMIN_REFERAL_DEPTHS_SAVED--}';
98                                         break;
99
100                                 case 'delete':
101                                         foreach (postRequestParameter('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_REFERAL_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(postRequestParameter('ref_payout'));
118                         updateConfiguration(
119                                 array('allow_direct_pay', 'ref_payout'),
120                                 array(postRequestParameter('allow_direct_pay'), $REF)
121                         );
122                         if ((getConfig('ref_payout') == '0') && (postRequestParameter('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) && (postRequestParameter('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                 if (strpos($GLOBALS['sqls'][0], 'INSERT') > -1) {
138                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`=%s LIMIT 1",
139                                 array(bigintval(postRequestParameter('level'))), __FILE__, __LINE__);
140                         SQL_FREERESULT($result);
141                 } // END - if
142
143                 if (countSqls() > 0) {
144                         // Run all SQL commands
145                         runFilterChain('run_sqls');
146
147                         // Entry saved...
148                         $message = '{--SETTINGS_SAVED--}';
149
150                         // Destroy config cache file here...
151                         rebuildCache('config', 'config');
152                 } else {
153                         // Prepare failed-message
154                         $message = '<span class="notice">{--SETTINGS_NOT_SAVED--}</span>';
155                 }
156
157                 // Remove SQL queries
158                 unsetSqls();
159         }
160
161         // Shall we display a message?
162         if (!empty($message)) {
163                 // When do so...
164                 displayMessage($message);
165         } // END - if
166 } elseif (getRequestParameter('sub') == 'settings') {
167         // Setup some settings like direct pay and so on
168         // Including new add-mode for one-time referal bonus
169         foreach (array('allow_direct_pay') as $entry) {
170                 $content[$entry . '_y'] = '';
171                 $content[$entry . '_n'] = '';
172                 $content[$entry . '_' . strtolower(getConfig($entry))] = ' checked="checked"';
173         } // END - foreach
174
175         // Load template
176         loadTemplate('admin_config_point_settings', false, $content);
177 } elseif (getRequestParameter('sub') == 'ref') {
178         // 12          3     32    2                        3321
179         if ((isFormSent('delete')) && (ifPostContainsSelections())) {
180                 // Delete entries
181                 $OUT = '';
182                 foreach (postRequestParameter('sel') as $id => $value) {
183                         $result = SQL_QUERY_ESC("SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
184                                 array(bigintval($id)), __FILE__, __LINE__);
185                         $content = SQL_FETCHARRAY($result);
186                         SQL_FREERESULT($result);
187
188                         // Load row template and switch color
189                         $OUT .= loadTemplate('admin_delete_reflevel_row', true, $content);
190                 } // END - foreach
191
192                 // Load main template
193                 loadTemplate('admin_delete_reflevel', false, $OUT);
194         } elseif ((isFormSent('edit')) && (ifPostContainsSelections())) {
195                 // Edit entries
196                 $OUT = '';
197                 foreach (postRequestParameter('sel') as $id => $value) {
198                         $result = SQL_QUERY_ESC("SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1",
199                                 array(bigintval($id)), __FILE__, __LINE__);
200                         $content = SQL_FETCHARRAY($result);
201                         SQL_FREERESULT($result);
202
203                         // Load row template and switch color
204                         $OUT .= loadTemplate('admin_edit_reflevel_row', true, $content);
205                 } // END - foreach
206
207                 // Load main template
208                 loadTemplate('admin_edit_reflevel', false, $OUT);
209         } else {
210                 // Referal levels
211                 $result = SQL_QUERY("SELECT `id`,`level`,`percents` FROM `{?_MYSQL_PREFIX?}_refdepths` ORDER BY `level` ASC", __FILE__, __LINE__);
212                 if (!SQL_HASZERONUMS($result)) {
213                         // Make referal levels editable and deletable
214                         $OUT = '';
215
216                         // List already existing categories for editing
217                         while ($content = SQL_FETCHARRAY($result)) {
218                                 // Load row template and switch color
219                                 $OUT .= loadTemplate('admin_list_reflevel_row', true, $content);
220                         } // END - while
221
222                         // Free memory
223                         SQL_FREERESULT($result);
224
225                         // Load main template
226                         loadTemplate('admin_list_reflevel', false, $OUT);
227                 }
228
229                 // Form for adding new referal levels
230                 loadTemplate('admin_add_reflevel');
231         }
232 } elseif (getRequestParameter('sub') == 'points') {
233         // Load template
234         loadTemplate('admin_config_sub_points');
235 } else {
236         // Display selection box
237         loadTemplate('admin_config_points');
238 }
239
240 // [EOF]
241 ?>