Several more constants rewritten to getConfig()
[mailer.git] / inc / extensions / ext-order.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/29/2004 *
4  * ================                             Last change: 11/14/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-order.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : Swapped out order system for PRO version         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Ausgelagertes Buchungssytem fuer PRO-Version     *
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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Version number
46 EXT_SET_VERSION('0.5.0');
47
48 // Version history array (add more with , '0.1.0' and so on)
49 EXT_SET_VER_HISTORY(array('0.0', '0.1.0', '0.1.1', '0.1.2', '0.1.3', '0.1.4', '0.1.5', '0.1.6', '0.1.7', '0.1.8', '0.1.9', '0.2.0', '0.2.1', '0.2.2', '0.2.3', '0.2.4', '0.2.5', '0.2.6', '0.2.7', '0.2.8', '0.2.9', '0.3.0', '0.3.1', '0.3.2', '0.3.3', '0.3.4', '0.3.5', '0.3.6', '0.3.7', '0.3.8', '0.3.9', '0.4.0', '0.4.1', '0.4.2', '0.4.3', '0.4.4', '0.4.5', '0.4.6', '0.4.7', '0.4.8', '0.4.9', '0.5.0'));
50
51 switch ($EXT_LOAD_MODE)
52 {
53         case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
54                 // SQL commands to run
55                 ADD_EXT_SQL('');
56                 break;
57
58         case 'remove': // Do stuff when removing extension
59                 // SQL commands to run
60                 ADD_EXT_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE `what`='config_order'");
61                 break;
62
63         case 'activate': // Do stuff when admin activates this extension
64                 // SQL commands to run
65                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='Y', `locked`='N' WHERE `what`='order' LIMIT 1");
66                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_mod_reg` SET `locked`='N', `hidden`='N', `admin_only`='N', `mem_only`='Y' WHERE `module`='order' LIMIT 1");
67                 break;
68
69         case 'deactivate': // Do stuff when admin deactivates this extension
70                 // SQL commands to run
71                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `visible`='N', `locked`='Y' WHERE `what`='order' LIMIT 1");
72                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_mod_reg` SET `visible`='N', `locked`='Y' WHERE `module`='order' LIMIT 1");
73                 break;
74
75         case 'update': // Update an extension
76                 switch ($EXT_VER)
77                 {
78                         case '0.1.0': // SQL queries for v0.1
79                                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD order_max_full ENUM('ORDER','MAX') NOT NULL DEFAULT 'MAX'");
80                                 ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`sort`,`descr`) VALUES ('setup','config_order','Mailbuchungsseite','7','Einstellungen am Mailbuchungsformular.')");
81
82                                 // Update notes (these will be set as task text!)
83                                 EXT_SET_UPDATE_NOTES("Maximale Mailbuchungen sind nun vom maximalen Empfang abh&auml;gig.");
84                                 break;
85
86                         case '0.1.1': // SQL queries for v0.1.1
87                                 ADD_EXT_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE `what`='config_order' LIMIT 1");
88                                 ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`sort`,`descr`) VALUES ('setup','config_order','Mailbuchungsseite','7','Einstellungen am Mailbuchungsformular.')");
89                                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_user_data` ADD mail_orders BIGINT(20) UNSIGNED NOT NULL DEFAULT 0");
90
91                                 // Update notes (these will be set as task text!)
92                                 EXT_SET_UPDATE_NOTES("Maximale Mailbuchung vervollst&auml;ndigt (Admin-Bereich und im Buchungsformular selber).");
93                                 break;
94
95                         case '0.1.3': // SQL queries for v0.1.3
96                                 // Update notes (these will be set as task text!)
97                                 EXT_SET_UPDATE_NOTES("Maximale Mailbuchungen repariert (werden nun hochgez&auml;hlt und bei t&auml;glichem Reset auf 0 gesetzt).");
98                                 break;
99
100                         case '0.1.4': // SQL queries for v0.1.4
101                                 // Update notes (these will be set as task text!)
102                                 EXT_SET_UPDATE_NOTES("Dummy-Datenfeld wird wieder gel&ouml;scht, um Probleme zu vermeiden. Fehlende Spalte <em>mail_order</em> korregiert auf <em>mail_orders</em>.");
103                                 break;
104
105                         case '0.1.5': // SQL queries for v0.1.5
106                                 // Update notes (these will be set as task text!)
107                                 EXT_SET_UPDATE_NOTES("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
108                                 break;
109
110                         case '0.1.6': // SQL queries for v0.1.6
111                                 // Update notes (these will be set as task text!)
112                                 EXT_SET_UPDATE_NOTES("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
113                                 break;
114
115                         case '0.1.7': // SQL queries for v0.1.7
116                                 // Update notes (these will be set as task text!)
117                                 EXT_SET_UPDATE_NOTES("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
118                                 break;
119
120                         case '0.1.8': // SQL queries for v0.1.8
121                                 // Update notes (these will be set as task text!)
122                                 EXT_SET_UPDATE_NOTES("Problem mit Speicherung der Einstellungen beseitigt.");
123                                 break;
124
125                         case '0.1.9': // SQL queries for v0.1.9
126                                 // Update notes (these will be set as task text!)
127                                 EXT_SET_UPDATE_NOTES("Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
128                                 break;
129
130                         case '0.2.0': // SQL queries for v0.2.0
131                                 // Update notes (these will be set as task text!)
132                                 EXT_SET_UPDATE_NOTES("Seit <a href=\"#\">Patch 340</a> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
133                                 break;
134
135                         case '0.2.1': // SQL queries for v0.2.1
136                                 // Update notes (these will be set as task text!)
137                                 EXT_SET_UPDATE_NOTES("Templates <u>member_frameset-back.tpl</u> und <u>member_frameset-send.tpl</u> nach <u>member_order_back.tpl</u> und <u>member_order_send.tpl</u> umbenannt.");
138                                 break;
139
140                         case '0.2.2': // SQL queries for v0.2.2
141                                 // Update notes (these will be set as task text!)
142                                 EXT_SET_UPDATE_NOTES("Es wird nun &uuml;berpr&uuml;ft ob auch gen&uuml;gend Empf&auml;nger eingegeben worden sind und ob auch gen&uuml;gend empfangsbereit sind.");
143                                 break;
144
145                         case '0.2.3': // SQL queries for v0.2.3
146                                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD order_min BIGINT(20) UNSIGNED NOT NULL DEFAULT 10");
147
148                                 // Update notes (these will be set as task text!)
149                                 EXT_SET_UPDATE_NOTES("Minimum an Empf&auml;nger pro Mailbuchung einstellbar. Standart: 10 Empf&auml;nger");
150                                 break;
151
152                         case '0.2.4': // SQL queries for v0.2.4
153                                 // Update notes (these will be set as task text!)
154                                 EXT_SET_UPDATE_NOTES("Anzahl mindestens einszustellende Empf&auml;nger wird nun auch angezeigt.");
155                                 break;
156
157                         case '0.2.5': // SQL queries for v0.2.5
158                                 // Update notes (these will be set as task text!)
159                                 EXT_SET_UPDATE_NOTES("Speicherung der Einstellungen klappt.");
160                                 break;
161
162                         case '0.2.6': // SQL queries for v0.2.6
163                                 // Update notes (these will be set as task text!)
164                                 EXT_SET_UPDATE_NOTES("Fehler in Mailbuchung behoben: Es wurde beim Ermitteln der n&ouml;tigen {?POINTS?} die maximale Anzahl von Usern in der Kategorie gew&auml;hlt und
165 nicht die vom Mitglied eingegebene. Resultat: Das Script beschwerte sich, der User h&auml;tte nicht gen&uuml;gend {?POINTS?} auf dem Konto. Ein Rechenbeispiel:
166 <ol>
167   <li>Das Mitglied w&auml;hlt eine Kategorie XYZ mit maximal 15 Empf&auml;ngern aus.</li>
168   <li>Es stellt die Mailart <u>&quot;3 {?POINTS?} Kosten / Mail&quot;</u> ein.</li>
169   <li>Es hat aber nur {?POINTS?} f&uuml;r 10 Empf&auml;nger und gibt 10 ein.</li>
170   <li>Das Script hatte bis zu dieser Version 3 {?POINTS?} * <u>15</u> = 45 {?POINTS?} gerechnet, hat das Mitglied mehr oder gleich 45 {?POINTS?}, fiehl dieser Fehler nicht
171   auf.</li>
172   <li>Hatte es aber, wie hier im Beispiel 31 {?POINTS?}, konnte es nicht mehr buchen.</li>
173   <li>Jetzt ist der Fehler endlich weg! Machen Sie dies bitte Ihren Mitgliedern bekannt.</li>
174 </ol>");
175                                 break;
176
177                         case '0.2.7': // SQL queries for v0.2.7
178                                 // Update notes (these will be set as task text!)
179                                 EXT_SET_UPDATE_NOTES("Fehler mit <u>__MIN_VALUE</u> behoben.");
180                                 break;
181
182                         case '0.2.8': // SQL queries for v0.2.8
183                                 // Update notes (these will be set as task text!)
184                                 EXT_SET_UPDATE_NOTES("Konstantenproblem beseitigt.");
185                                 break;
186
187                         case '0.2.9': // SQL queries for v0.2.9
188                                 // Update notes (these will be set as task text!)
189                                 EXT_SET_UPDATE_NOTES("Problem mit nicht funktionierenden Mailbuchungen beseitigt.");
190                                 break;
191
192                         case '0.3.0': // SQL queries for v0.3.0
193                                 // Update notes (these will be set as task text!)
194                                 EXT_SET_UPDATE_NOTES("Basis-Modul <strong>order.php</strong> abgesichert, wenn Erweiterung nicht aktiviert ist.");
195                                 break;
196
197                         case '0.3.1': // SQL queries for v0.3.1
198                                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD order_select VARCHAR(255) NOT NULL DEFAULT 'userid'");
199                                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD order_mode ENUM('ASC','DESC') NOT NULL DEFAULT 'DESC'");
200
201                                 // Update notes (these will be set as task text!)
202                                 EXT_SET_UPDATE_NOTES("Beworbene URL wird nun getestet.");
203                                 break;
204
205                         case '0.3.2': // SQL queries for v0.3.2
206                                 // Update notes (these will be set as task text!)
207                                 EXT_SET_UPDATE_NOTES("Datumsformat festgelegt auf ausf&uuml;hrlich.");
208                                 break;
209
210                         case '0.3.3': // SQL queries for v0.3.3
211                                 // Update notes (these will be set as task text!)
212                                 EXT_SET_UPDATE_NOTES("Unter <strong>Einstellungen - Mailbuchungsseite</strong> war immer die Tabellenspalte <strong>Mitgliedsnummer</strong> ausgew&auml;hlt.");
213                                 break;
214
215                         case '0.3.4': // SQL queries for v0.3.4
216                                 // Update notes (these will be set as task text!)
217                                 EXT_SET_UPDATE_NOTES("Dateiamenskonflikt zwischen den Erweiterungen <strong>support</strong> und <strong>order</strong> behoben.");
218                                 break;
219
220                         case '0.3.5': // SQL queries for v0.3.5
221                                 // Update notes (these will be set as task text!)
222                                 EXT_SET_UPDATE_NOTES("Das Mitglied konnte geziehlt die Anzahl Mailbuchungen durch Abspeichern seines Profiles beeinflussen. Der Fehler war eine falsche Tabellenspalte. Dies war <strong>max_mails</strong>, die durch das Mitglieder ver&auml;nderbar ist und zur Festellung der Maximalen Mailbuchungen herangezogen wurde.");
223                                 break;
224
225                         case '0.3.6': // SQL queries for v0.3.6
226                                 // Update notes (these will be set as task text!)
227                                 EXT_SET_UPDATE_NOTES("Im Modul order (<strong>inc/modules/order.php</strong>) wurde fehlerhafterweise die Erweiterung <strong>beg</strong> getestet.");
228                                 break;
229
230                         case '0.3.7': // SQL queries for v0.3.7
231                                 // Update notes (these will be set as task text!)
232                                 EXT_SET_UPDATE_NOTES("SQL-Anweisungen mit SQL_QUERY_ESC() abgesichert.");
233                                 break;
234
235                         case '0.3.8': // SQL queries for v0.3.8
236                                 // Update notes (these will be set as task text!)
237                                 EXT_SET_UPDATE_NOTES("Mailbuchungsseite korregiert.");
238                                 break;
239
240                         case '0.3.9': // SQL queries for v0.3.9
241                                 // Update notes (these will be set as task text!)
242                                 EXT_SET_UPDATE_NOTES("Erneuten Fehler in Mailbuchungsseite behoben.");
243                                 break;
244
245                         case '0.4.0': // SQL queries for v0.4.0
246                                 // Update notes (these will be set as task text!)
247                                 EXT_SET_UPDATE_NOTES(POINTS."-Abzug klappt wieder. Danke an Andreman!");
248                                 break;
249
250                         case '0.4.1': // SQL queries for v0.4.1
251                                 // Update notes (these will be set as task text!)
252                                 EXT_SET_UPDATE_NOTES("Abspeichern von Einstellungen repariert.");
253                                 break;
254
255                         case '0.4.2': // SQL queries for v0.4.2
256                                 // Update notes (these will be set as task text!)
257                                 EXT_SET_UPDATE_NOTES("Vorbereitung auf die neue Mediendaten v0.0.4.");
258                                 break;
259
260                         case '0.4.3': // SQL queries for v0.4.3
261                                 // Update notes (these will be set as task text!)
262                                 EXT_SET_UPDATE_NOTES("Neue Urlaubsschaltung mit integriert.");
263                                 break;
264
265                         case '0.4.4': // SQL queries for v0.4.4
266                                 // Update notes (these will be set as task text!)
267                                 EXT_SET_UPDATE_NOTES("Ein <strong>WHERE &#96;ext_active&#96;='Y'</strong> tauchte bei einigen Betreibern auf und ist mit dieser Version beseitigt.");
268                                 break;
269
270                         case '0.4.5': // SQL queries for v0.4.5
271                                 // Update notes (these will be set as task text!)
272                                 EXT_SET_UPDATE_NOTES("De-/Aktivieren des mit dieser Erweiterung verkn&uuml;pften Modules eingebunden.");
273                                 break;
274
275                         case '0.4.6': // SQL queries for v0.4.6
276                                 ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('order',NULL,'Mailbuchungen',3,'Y','N')");
277                                 ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_member_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('order','order2','Framekiller-Mails',2,'Y','N')");
278                                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_member_menu` SET `action`='order', `sort`='1', `title`='Klick-Mails' WHERE `what`='order' LIMIT 1");
279
280                                 // Update notes (these will be set as task text!)
281                                 EXT_SET_UPDATE_NOTES("Mitgliedsmen&uuml; komplett umgebaut.");
282                                 break;
283
284                         case '0.4.7': // SQL queries for v0.4.7
285                                 // Update notes (these will be set as task text!)
286                                 EXT_SET_UPDATE_NOTES("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
287                                 break;
288
289                         case '0.4.8': // SQL queries for v0.4.8
290                                 ADD_EXT_SQL("UPDATE `{!_MYSQL_PREFIX!}_admin_menu` SET `title`='Mailbuchung' WHERE `what`='config_order' LIMIT 1");
291
292                                 // Update notes (these will be set as task text!)
293                                 EXT_SET_UPDATE_NOTES("Men&uuml;punkt &quot;Mailbuchungsseite&quot; nach &quot;Mailbuchung&quot; umbenannt und weitere Einstellungen aus Sonstige Einstellungen verschoben.");
294                                 break;
295
296                         case '0.4.9': // SQL queries for v0.4.9
297                                 ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD repay_deleted_mails ENUM('REPAY','JACKPOT','SHRED') NOT NULL DEFAULT 'REPAY'");
298
299                                 // Update notes (these will be set as task text!)
300                                 EXT_SET_UPDATE_NOTES("Bei L&ouml;schung von Mailbuchungen kann nun global entschieden werden (Einstellungen also), ob die verbliebenen {?POINTS?} wieder gutgeschrieben werden sollen oder in den Jackpot landen.");
301                                 break;
302
303                         case '0.5.0': // SQL queries for v0.5.0
304                                 ADD_EXT_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_url_blacklist`");
305                                 ADD_EXT_SQL("CREATE TABLE `{!_MYSQL_PREFIX!}_url_blacklist` (
306 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
307 `url` VARCHAR(255) NOT NULL DEFAULT '',
308 `pool_id` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
309 `timestamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
310 PRIMARY KEY (`id`),
311 INDEX (`pool_id`)
312 ) TYPE=MYISAM COMMENT='URL blacklist'");
313
314                                 // Update notes (these will be set as task text!)
315                                 EXT_SET_UPDATE_NOTES("Tabelle f&uuml;r URL-Sperrliste angelegt.");
316                                 break;
317                 }
318                 break;
319
320                         case 'modify': // When the extension got modified
321                                 break;
322
323                         case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
324                                 break;
325
326                         default: // Do stuff when extension is loaded
327                                 // Do daily reset only when installed and extension version is at least 0.1.1
328                                 if ((isResetModeEnabled()) && (isInstalled()) && (isAdminRegistered()) && (GET_EXT_VERSION('order') >= '0.1.1')) {
329                                         // Reset mail order values
330                                         $result_ext = SQL_QUERY("UPDATE `{!_MYSQL_PREFIX!}_user_data` SET mail_orders=0 WHERE mail_orders > 0", __FILE__, __LINE__);
331                                 } // END - if
332                                 break;
333 }
334
335 //
336 ?>