A lot code rewritten:
[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 = '';
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['rallye_content'] = generateOptionList('rallye_data', 'id', 'title', $content['rallye_id']);
136
137                                 // Load row template and switch color
138                                 $OUT .= loadTemplate('admin_config_rallye_edit_row', true, $content);
139                         } // END - foreach
140
141                         // Remember row content
142                         $content['rows'] = $OUT;
143
144                         // Prepare data for the main template
145                         $content['rallye'] = getRequestParameter('rallye');
146
147                         // Load main template
148                         loadTemplate('admin_config_rallye_edit', false, $content);
149                 } else {
150                         // Nothing selected
151                         $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--}';
152                         loadTemplate('admin_settings_saved', false, $content);
153                 }
154         } elseif (isFormSent('del')) {
155                 // Check if at last one line is selected
156                 if (countPostSelection() > 0) {
157                         // List all prices
158                         $OUT = '';
159                         foreach (postRequestParameter('sel') as $id => $sel) {
160                                 // Load data to selected rallye
161                                 $result = SQL_QUERY_ESC("SELECT `rallye_id`, `price_level`, `points`, `info` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `id`=%s LIMIT 1",
162                                         array(bigintval($id)), __FILE__, __LINE__);
163                                 $content = SQL_FETCHARRAY($result);
164                                 SQL_FREERESULT($result);
165
166                                 // Load row template and switch color
167                                 $OUT .= loadTemplate('admin_config_rallye_del_row', true, $content);
168                         } // END - foreach
169                         $content['rows'] = $OUT;
170
171                         // Prepare data for the main template
172                         $content['rallye'] = getRequestParameter('rallye');
173
174                         // Load main template
175                         loadTemplate('admin_config_rallye_del', false, $content);
176                 } else {
177                         // Nothing selected
178                         $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--}';
179                         loadTemplate('admin_settings_saved', false, $content);
180                 }
181         } else {
182                 // a rallye was selected, so check if there are already prices assigned...
183                 $result = SQL_QUERY_ESC("SELECT `id`, `price_level`, `points`, `info` FROM `{?_MYSQL_PREFIX?}_rallye_prices` WHERE `rallye_id`=%s ORDER BY `price_level` ASC",
184                         array(bigintval(getRequestParameter('rallye'))), __FILE__, __LINE__);
185
186                 if (SQL_NUMROWS($result) > 0) {
187                         // Load all prices for the selected rallye
188                         $OUT = '';
189                         while ($content = SQL_FETCHARRAY($result)) {
190                                 // Load row template and switch color
191                                 $OUT .= loadTemplate('admin_config_rallye_prices_row', true, $content);
192                         } // END - while
193
194                         // Free memory
195                         SQL_FREERESULT($result);
196
197                         // @TODO Rewrite these two constants
198                         $content['rows'] = $OUT;
199
200                         // Prepare data for the main template
201                         $content['rallye'] = getRequestParameter('rallye');
202
203                         // Load main template
204                         loadTemplate('admin_config_rallye_prices', false, $content);
205                 } // END - if
206         }
207
208         // Add form for adding new price level
209         if (!isFormSent('edit')) {
210                 loadTemplate('admin_add_rallye_prices', false, getRequestParameter('rallye'));
211         } // END - if
212 } else {
213         // No rallye selected so display all available without prices
214         $result = SQL_QUERY("SELECT
215         d.id, d.admin_id, d.start_time, d.end_time, d.title, a.login, d.is_active
216 FROM
217         `{?_MYSQL_PREFIX?}_rallye_data` AS d
218 LEFT JOIN
219         `{?_MYSQL_PREFIX?}_admins` AS a
220 ON
221         d.admin_id=a.id
222 ORDER BY
223         d.start_time DESC", __FILE__, __LINE__);
224         if (SQL_NUMROWS($result) > 0) {
225                 // List found rallyes
226                 $OUT = '';
227                 while ($content = SQL_FETCHARRAY($result)) {
228                         // Prepare data for the row template
229                         $content = array(
230                                 'id'         => $content['id'],
231                                 'title'      => $content['title'],
232                                 'admin_id'   => $content['admin_id'],
233                                 'login'      => $content['login'],
234                                 'start'      => generateDateTime($content['start_time'], 3),
235                                 'end'        => generateDateTime($content['end_time'], 3),
236                         );
237
238                         // Load row template and switch color
239                         $OUT .= loadTemplate('admin_list_rallye_prices_row', true, $content);
240                 } // END - while
241
242                 // Free memory
243                 SQL_FREERESULT($result);
244
245                 // Load main template
246                 loadTemplate('admin_list_rallye_prices', false, $OUT);
247         } else {
248                 // No rallyes setup so far
249                 loadTemplate('admin_settings_saved', false, '{--RALLYE_NO_RALLYES_SETUP--}');
250         }
251 }
252
253 // [EOF]
254 ?>