Changed all admin getter, closed internal TODOs:
[mailer.git] / inc / modules / admin / what-config_rallye_prices.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 07/03/2004 *
4  * ===================                          Last change: 08/22/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-config_rallye_prices.php                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Setup rallye prices                              *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Rallye-Preise einrichten                         *
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 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (isGetRequestParameterSet('rallye')) {
49         // Price submitted?
50         if (isFormSent('add')) {
51                 if ((isPostRequestParameterSet(('level'))) && ((isPostRequestParameterSet('points')) || (isPostRequestParameterSet(('info'))))) {
52                         // Submitted data is valid, but maybe we already have this price level?
53                         $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s AND `price_level`='%s' LIMIT 1",
54                         array(bigintval(getRequestParameter('rallye')), bigintval(postRequestParameter('level'))), __FILE__, __LINE__);
55
56                         if (SQL_HASZERONUMS($result)) {
57                                 // Ok, new price level entered!
58                                 SQL_QUERY_ESC("INSERT INTO
59         `{?_MYSQL_PREFIX?}_rallye_prices`
60 (`rallye_id`, `price_level`, `points`, `info`)
61         VALUES
62 (%s, %s, '%s', '%s')",
63                                 array(
64                                         bigintval(getRequestParameter('rallye')),
65                                         bigintval(postRequestParameter('level')),
66                                         postRequestParameter('points'),
67                                         postRequestParameter('info')
68                                 ), __FILE__, __LINE__);
69                                 loadTemplate('admin_settings_saved', false, '{--RALLYE_PRICE_LEVEL_SAVED--}');
70                         } else {
71                                 // Free memory
72                                 SQL_FREERESULT($result);
73
74                                 // Price level found!
75                                 loadTemplate('admin_settings_saved', false, '{--RALLYE_PRICE_ALREADY_FOUND--}');
76                         }
77                 }
78         } elseif (isFormSent('remove')) {
79                 // Check if at last one line is selected
80                 if (countPostSelection() > 0) {
81                         // Delete selected entries
82                         foreach (postRequestParameter('sel') as $id => $sel) {
83                                 SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `id`=%s LIMIT 1",
84                                         array(bigintval($id)), __FILE__, __LINE__);
85                         } // END - foreach
86
87                         // Output message
88                         loadTemplate('admin_settings_saved', false, '{--RALLYE_ENTRIES_DELETED--}');
89                 } else {
90                         loadTemplate('admin_settings_saved', false, '{--RALLYE_ENTRIES_NOT_DELETED--}');
91                 }
92         } elseif (isFormSent('change')) {
93                 // Change entries
94                 foreach (postRequestParameter('level') as $id => $level) {
95                         // Secure id
96                         $id = bigintval($id);
97
98                         // Update entry
99                         SQL_QUERY_ESC("UPDATE
100         `{?_MYSQL_PREFIX?}_rallye_prices`
101 SET
102         `rallye_id`=%s,
103         `price_level`=%d,
104         `points`=%s,
105         `info`='%s'
106 WHERE
107         `id`=%s
108 LIMIT 1",
109                                 array(
110                                         postRequestParameter('rallye_id', $id),
111                                         bigintval($level),
112                                         postRequestParameter('points', $id),
113                                         postRequestParameter('infos', $id),
114                                         $id
115                                 ), __FILE__, __LINE__);
116                 }
117
118                 // Output message
119                 loadTemplate('admin_settings_saved', false, '{--RALLYE_ENTRIES_CHANGED--}');
120         }
121
122         if (isFormSent('edit')) {
123                 // Check if at last one line is selected
124                 if (countPostSelection() > 0) {
125                         // Make selected editable
126                         $OUT = ''; $SW = 2;
127                         foreach (postRequestParameter('sel') as $id => $sel) {
128                                 // Load data to selected rallye
129                                 $result = SQL_QUERY_ESC("SELECT `rallye_id`, `price_level`, `points`, `info` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `id`=%s LIMIT 1",
130                                         array(bigintval($id)), __FILE__, __LINE__);
131                                 $content = SQL_FETCHARRAY($result);
132                                 SQL_FREERESULT($result);
133
134                                 // Add more content
135                                 $content['sw']             = $SW;
136                                 $content['rallye_content'] = generateOptionList('rallye_data', 'id', 'title', $content['rallye_id']);
137
138                                 // Load row template and switch color
139                                 $OUT .= loadTemplate('admin_config_rallye_edit_row', true, $content);
140                                 $SW = 3 - $SW;
141                         } // END - foreach
142
143                         // Remember row content
144                         $content['rows'] = $OUT;
145
146                         // Prepare data for the main template
147                         $content['rallye'] = getRequestParameter('rallye');
148
149                         // Load main template
150                         loadTemplate('admin_config_rallye_edit', false, $content);
151                 } else {
152                         // Nothing selected
153                         $content = '{--RALLYE_NO_PRICES_SELECTED_1--}<a href="{%url=modules.php?module=admin&amp;what=config_rallye_prices&amp;rallye=' . getRequestParameter('rallye') . '%}">{--RALLYE_NO_PRICES_SELECTED_2--}</a>{--RALLYE_NO_PRICES_SELECTED_3--}';
154                         loadTemplate('admin_settings_saved', false, $content);
155                 }
156         } elseif (isFormSent('del')) {
157                 // Check if at last one line is selected
158                 if (countPostSelection() > 0) {
159                         // List all prices
160                         $OUT = ''; $SW = 2;
161                         foreach (postRequestParameter('sel') as $id => $sel) {
162                                 // Load data to selected rallye
163                                 $result = SQL_QUERY_ESC("SELECT `rallye_id`, `price_level`, `points`, `info` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `id`=%s LIMIT 1",
164                                         array(bigintval($id)), __FILE__, __LINE__);
165                                 $content = SQL_FETCHARRAY($result);
166                                 SQL_FREERESULT($result);
167
168                                 // Add color switch
169                                 $content['sw'] = $SW;
170
171                                 // Load row template and switch color
172                                 $OUT .= loadTemplate('admin_config_rallye_del_row', true, $content);
173                                 $SW = 3 - $SW;
174                         } // END - foreach
175                         $content['rows'] = $OUT;
176
177                         // Prepare data for the main template
178                         $content['rallye'] = getRequestParameter('rallye');
179
180                         // Load main template
181                         loadTemplate('admin_config_rallye_del', false, $content);
182                 } else {
183                         // Nothing selected
184                         $content = '{--RALLYE_NO_PRICES_SELECTED_1--}<a href="{%url=modules.php?module=admin&amp;what=config_rallye_prices&amp;rallye=' . getRequestParameter('rallye') . '%}">{--RALLYE_NO_PRICES_SELECTED_2--}</a>{--RALLYE_NO_PRICES_SELECTED_3--}';
185                         loadTemplate('admin_settings_saved', false, $content);
186                 }
187         } else {
188                 // a rallye was selected, so check if there are already prices assigned...
189                 $result = SQL_QUERY_ESC("SELECT `id`, `price_level`, `points`, `info` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s ORDER BY `price_level` ASC",
190                         array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__);
191
192                 if (SQL_NUMROWS($result) > 0) {
193                         // Load all prices for the selected rallye
194                         $OUT = ''; $SW = 2;
195                         while ($content = SQL_FETCHARRAY($result)) {
196                                 // Add color switch
197                                 $content['sw'] = $SW;
198
199                                 // Load row template and switch color
200                                 $OUT .= loadTemplate('admin_config_rallye_prices_row', true, $content);
201                                 $SW = 3 - $SW;
202                         } // END - while
203
204                         // Free memory
205                         SQL_FREERESULT($result);
206
207                         // @TODO Rewrite these two constants
208                         $content['rows'] = $OUT;
209
210                         // Prepare data for the main template
211                         $content['rallye'] = getRequestParameter('rallye');
212
213                         // Load main template
214                         loadTemplate('admin_config_rallye_prices', false, $content);
215                 } // END - if
216         }
217
218         // Add form for adding new price level
219         if (!isFormSent('edit')) {
220                 loadTemplate('admin_add_rallye_prices', false, getRequestParameter('rallye'));
221         } // END - if
222 } else {
223         // No rallye selected so display all available without prices
224         $result = SQL_QUERY("SELECT
225         d.id, d.admin_id, d.start_time, d.end_time, d.title, a.login, d.is_active
226 FROM
227         `{?_MYSQL_PREFIX?}_rallye_data` AS d
228 LEFT JOIN
229         `{?_MYSQL_PREFIX?}_admins` AS a
230 ON
231         d.admin_id=a.id
232 ORDER BY
233         d.start_time DESC", __FILE__, __LINE__);
234         if (SQL_NUMROWS($result) > 0) {
235                 // List found rallyes
236                 $OUT = ''; $SW = 2;
237                 while ($content = SQL_FETCHARRAY($result)) {
238                         // Prepare data for the row template
239                         $content = array(
240                                 'sw'         => $SW,
241                                 'id'         => $content['id'],
242                                 'title'      => $content['title'],
243                                 'admin_id'   => $content['admin_id'],
244                                 'login'      => $content['login'],
245                                 'start'      => generateDateTime($content['start_time'], 3),
246                                 'end'        => generateDateTime($content['end_time'], 3),
247                         );
248
249                         // Load row template and switch color
250                         $OUT .= loadTemplate('admin_list_rallye_prices_row', true, $content);
251                         $SW = 3 - $SW;
252                 } // END - while
253
254                 // Free memory
255                 SQL_FREERESULT($result);
256
257                 // Load main template
258                 loadTemplate('admin_list_rallye_prices', false, $OUT);
259         } else {
260                 // No rallyes setup so far
261                 loadTemplate('admin_settings_saved', false, '{--RALLYE_NO_RALLYES_SETUP--}');
262         }
263 }
264
265 // [EOF]
266 ?>