2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 04/29/2004 *
4 * =================== Last change: 11/23/2004 *
6 * -------------------------------------------------------------------- *
7 * File : ext-register.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Swapped out registration system for new members *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Ausgelagertes Anmeldesystem fuer Mitglieder *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2012 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
44 setThisExtensionVersion('0.5.7');
46 // Version history array (add more with , '0.0.1' and so on)
47 setExtensionVersionHistory(array('0.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', '0.5.1', '0.5.2', '0.5.3', '0.5.4', '0.5.5', '0.5.6', '0.5.7'));
49 switch (getExtensionMode()) {
50 case 'register': // Do stuff when installation is running
51 // SQL commands to run
52 addGuestMenuSql('members', 'register', 'Anmeldung', 2);
55 case 'remove': // Do stuff when removing extension
56 // SQL commands to run
57 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_register' LIMIT 1");
58 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='register' LIMIT 1");
59 addDropTableSql('must_register');
61 // Unregister points data
62 unregisterExtensionPointsData('register_welcome');
63 unregisterExtensionPointsData('referral_bonus');
64 unregisterExtensionPointsData('referral_bonus_ref');
67 unregisterFilter(__FILE__, __LINE__, 'register_must_fillout', 'REGISTER_MUST_FILLOUT', TRUE, isExtensionDryRun());
68 unregisterFilter(__FILE__, __LINE__, 'pre_user_registration', 'PRE_USER_REGISTRATION_GENERIC', TRUE, isExtensionDryRun());
71 case 'activate': // Do stuff when admin activates this extension
72 // SQL commands to run
73 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `locked`='N',`visible`='Y' WHERE `what`='register' LIMIT 1");
76 case 'deactivate': // Do stuff when admin deactivates this extension
77 // SQL commands to run
78 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `locked`='Y',`visible`='N' WHERE `what`='register' LIMIT 1");
81 case 'update': // Update an extension
82 switch (getCurrentExtensionVersion()) {
83 case '0.1.0': // SQL queries for v0.1.0
84 addDropTableSql('must_register');
85 addCreateTableSql('must_register', "
86 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
87 `field_name` VARCHAR(255) NOT NULL DEFAULT '',
88 `field_required` ENUM('Y','N') NOT NULL DEFAULT 'Y',
90 'Data which fields the user must fill out');
92 // Add all entries as required (DO NOT DELETE THEM FROM DATABASE!)
93 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('surname', 'Y')");
94 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('family', 'Y')");
95 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('street_nr', 'Y')");
96 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('cntry', 'Y')");
97 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('zip', 'Y')");
98 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('city', 'Y')");
101 addAdminMenuSql('setup','config_register','Pflichtfelder','Stellen Sie hier die Pflichtfelder sowohl im Anmeldeformular, als auch im Mitgliedsbereich unter <strong>Profildaten ändern</strong> ein.', 12);
103 // Update notes (these will be set as task text!)
104 setExtensionUpdateNotes("Einstellbare Pflichtfelder hinzugefügt.");
107 case '0.1.1': // SQL queries for v0.1.1
108 // This update depends on ext-sql_patches update!
109 addExtensionDependency('sql_patches');
111 // Update notes (these will be set as task text!)
112 setExtensionUpdateNotes("Veraltetes Update entfernt.");
115 case '0.1.3': // SQL queries for v0.1.3
116 // This update depends on ext-sql_patches update!
117 addExtensionDependency('sql_patches');
119 // Update notes (these will be set as task text!)
120 setExtensionUpdateNotes("Standard Referral-Id kann per Admin-Bereich eingestellt werden (war vorher nur in modules.php und index.php direkt eingebbar.)");
123 case '0.1.4': // SQL queries for v0.1.4
124 // Update notes (these will be set as task text!)
125 setExtensionUpdateNotes("Wegen des Theme-Supportes hat sich die URL zur CSS-Datei geändert.");
128 case '0.1.5': // SQL queries for v0.1.5
129 // Update notes (these will be set as task text!)
130 setExtensionUpdateNotes("Konfiguration der Pflichtangaben ausgelagert in Template");
133 case '0.1.6': // SQL queries for v0.1.6
134 // Update notes (these will be set as task text!)
135 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
138 case '0.1.7': // SQL queries for v0.1.7
139 // Update notes (these will be set as task text!)
140 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
143 case '0.1.8': // SQL queries for v0.1.8
144 // Update notes (these will be set as task text!)
145 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
148 case '0.1.9': // SQL queries for v0.1.9
149 // Update notes (these will be set as task text!)
150 setExtensionUpdateNotes("Pflichtfelder wieder eingebaut (waren irgentwie ausgebaut???)");
153 case '0.2.0': // SQL queries for v0.2.0
154 // Update notes (these will be set as task text!)
155 setExtensionUpdateNotes("Problem mit Speicherung der Einstellungen beseitigt.");
158 case '0.2.1': // SQL queries for v0.2.1
159 // Update notes (these will be set as task text!)
160 setExtensionUpdateNotes("Menüpunkte im Gast-/Mitgliedsbereich können nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
163 case '0.2.2': // SQL queries for v0.2.2
164 // Update notes (these will be set as task text!)
165 setExtensionUpdateNotes("Sämtliche Sperren bei eingeloggten Admin deaktiviert.");
168 case '0.2.3': // SQL queries for v0.2.3
169 // Update notes (these will be set as task text!)
170 setExtensionUpdateNotes("Cookie <u>refid</u> aus Anmeldeformular entfernt.");
173 case '0.2.4': // SQL queries for v0.2.4
174 // Update notes (these will be set as task text!)
175 setExtensionUpdateNotes("Design "Solid-Business" eingebaut.");
178 case '0.2.5': // SQL queries for v0.2.5
179 // Update notes (these will be set as task text!)
180 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> überflüssige HTML-Tags entfernt.");
183 case '0.2.6': // SQL queries for v0.2.6
184 // Update notes (these will be set as task text!)
185 setExtensionUpdateNotes("IP-Nummer und Browserbezeichnung wird in Admin-Mails eingesetzt.");
188 case '0.2.7': // SQL queries for v0.2.7
189 // Update notes (these will be set as task text!)
190 setExtensionUpdateNotes("Referral-Id wird endlich korrekt gesetzt.");
193 case '0.2.8': // SQL queries for v0.2.8
194 // Update notes (these will be set as task text!)
195 setExtensionUpdateNotes("Parse error in <u>what-register.php</u> beseitigt.");
198 case '0.2.9': // SQL queries for v0.2.9
199 // Update notes (these will be set as task text!)
200 setExtensionUpdateNotes("Anrede "Firma" hinzugefügt.");
203 case '0.3.0': // SQL queries for v0.3.0
204 // Update notes (these will be set as task text!)
205 setExtensionUpdateNotes("Wörter <strong>{?mt_word?}</strong>, <strong>{?mt_word2?}</strong> und <strong>{?mt_word3?}</strong> sind austauschbar.");
208 case '0.3.1': // SQL queries for v0.3.1
209 // Update notes (these will be set as task text!)
210 setExtensionUpdateNotes("Email-Adresse wird vor dem Speichern auf G¨tigkeit hin getestet.");
213 case '0.3.2': // SQL queries for v0.3.2
214 // Update notes (these will be set as task text!)
215 setExtensionUpdateNotes("Einbindung der Erweiterung <strong>country</strong>, die Sie sich noch optional von <strike>meiner Seite herunterladen</strike> müssen.<br />
217 <strong>Wichtig: Laden Sie noch das Template <strong>guest_register.tpl</strong> mit hoch, welches unter templates/".getLanguage()."/html/guest/ zu finden ist!</strong>");
220 case '0.3.3': // SQL queries for v0.3.3
221 // Update notes (these will be set as task text!)
222 setExtensionUpdateNotes("Es werden dem Mitglied nur aktivierte Ländercodes zur Auswahl angeboten.");
225 case '0.3.4': // SQL queries for v0.3.4
226 // Update notes (these will be set as task text!)
227 setExtensionUpdateNotes("Auf Grund der Integration der neue Erweiterung <strong>country</strong> in die Anmeldephase klappte die Anmeldung nicht. Die dazu nütige Verknüpfung ist nun eingebaut und die Anmeldung klappt wieder. Vielen Dank nochmals an den Bug-Reporter (Fehlermelder)!");
230 case '0.3.5': // SQL queries for v0.3.5
231 // Update notes (these will be set as task text!)
232 setExtensionUpdateNotes("Design wird nach Anmeldung auch endlich im Mitgliedsmenü übernommen.");
235 case '0.3.6': // SQL queries for v0.3.6
236 // Update notes (these will be set as task text!)
237 setExtensionUpdateNotes("Fehlermeldung <strong>Fatal error: Call to undefined function: get_theme() in /../../guest/what-register.php on line 190</strong> beseitigt.");
240 case '0.3.7': // SQL queries for v0.3.7
241 // Update notes (these will be set as task text!)
242 setExtensionUpdateNotes("Fehlermeldung <strong>Fatal error: Call to undefined function: get_curr_theme<u>e</u>() in /../../guest/what-register.php on line 190</strong> beseitigt.");
245 case '0.3.8': // SQL queries for v0.3.8
246 // Update notes (these will be set as task text!)
247 setExtensionUpdateNotes("Weitere SQL-Befehle abgesichert.");
250 case '0.3.9': // SQL queries for v0.3.9
251 // Update notes (these will be set as task text!)
252 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
255 case '0.4.0': // SQL queries for v0.4.0
256 // Update notes (these will be set as task text!)
257 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
260 case '0.4.1': // SQL queries for v0.4.1
261 // Update notes (these will be set as task text!)
262 setExtensionUpdateNotes("Vorbereitung auf die neue Mediendaten v0.0.4.");
265 case '0.4.2': // SQL queries for v0.4.2
266 addConfigAddSql('register_default', "ENUM('Y','N') NOT NULL DEFAULT 'N'");
268 // Update notes (these will be set as task text!)
269 setExtensionUpdateNotes("Bei der Anmeldung kann die Standard-Auswahl zwischen Ja/Nein umgeschaltet werden. Das Ändern des Templates <strong>templates/".getLanguage()."/html/guest/guest_register.tpl</strong> ist nicht mehr nötig.");
272 case '0.4.3': // SQL queries for v0.4.3
273 // Update notes (these will be set as task text!)
274 setExtensionUpdateNotes("Parser-Error in <strong>inc/modules/guest/what-register.php</strong> beseitigt.");
277 case '0.4.4': // SQL queries for v0.4.4
278 // Update notes (these will be set as task text!)
279 setExtensionUpdateNotes("Anmeldefehler (EMail-Adresse war immer ein Ausrufezeichen) beseitigt.");
282 case '0.4.5': // SQL queries for v0.4.5
283 // Update notes (these will be set as task text!)
284 setExtensionUpdateNotes("if-Anweisungen auf Funktion <strong>empty()</strong> umgestellt.");
287 case '0.4.6': // SQL queries for v0.4.6
288 // Update notes (these will be set as task text!)
289 setExtensionUpdateNotes("Einstellung nach {?POINTS?}-Einstellungen verlagert.");
292 case '0.4.7': // SQL queries for v0.4.7
293 // Update notes (these will be set as task text!)
294 setExtensionUpdateNotes("<strong>setSession()</strong> mit @-Zeichen gegen ungewollte Ausgaben abgesichert.");
297 case '0.4.8': // SQL queries for v0.4.8
298 // Update notes (these will be set as task text!)
299 setExtensionUpdateNotes("Hash-Erstellung von <strong>md5()</strong> auf bessere Funktion <strong>generateHash()</strong> umgestellt.");
302 case '0.4.9': // SQL queries for v0.4.9
303 // Update notes (these will be set as task text!)
304 setExtensionUpdateNotes("Problem mit nicht anzeigbaren Kategorien in der Anmeldung beseitigt.");
307 case '0.5.0': // SQL queries for v0.5.0
308 // Update notes (these will be set as task text!)
309 setExtensionUpdateNotes("Fehlermeldung <span class=\"bad\"><strong>Fatal error:</strong> Call to undefined function registerGenerateCategoryTable() in <strong>{?PATH?}/inc/modules/guest/what-register.php</strong> on line <strong>434</strong></span> beseitigt.");
312 case '0.5.1': // SQL queries for v0.5.1
313 // Update notes (these will be set as task text!)
314 setExtensionUpdateNotes("Mail-Template <strong>register-member.tpl</strong> gefixt. Danke an <a href=\"http://forum.mxchange.org/profile-59.html\" target=\"_blank\" title=\"Mitgliedsprofil aufrufen\">wliepe</a> für die Fehlerfindung!");
317 case '0.5.2': // SQL queries for v0.5.2
318 // Update notes (these will be set as task text!)
319 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
322 case '0.5.3': // SQL queries for v0.5.3
324 registerFilter(__FILE__, __LINE__, 'register_must_fillout', 'REGISTER_MUST_FILLOUT', FALSE, TRUE, isExtensionDryRun());
327 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('gender','Y')");
328 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('email','Y')");
329 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('birthday','Y')");
330 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_must_register` (`field_name`, `field_required`) VALUES ('marker','Y')");
332 // Update notes (these will be set as task text!)
333 setExtensionUpdateNotes("Filter <strong>register_must_fillout</strong> hinzugefügt, weitere Felder in <span class=\"bad\">{?_MYSQL_PREFIX?}_must_register</span> eingefügt.");
336 case '0.5.4': // SQL queries for v0.5.4
337 addAdminMenuSql('setup', 'config_register2', 'Anmeldeformular', 'Stellen Sie ein, wie viel Kategorien der Gast bei der Anmeldung mindestens einstellen muss. Diese Einstellung gilt nachher auch im Mitgliedsbereich!', 8);
339 // Update notes (these will be set as task text!)
340 setExtensionUpdateNotes("Weiteren Menüpunkt aus <strong>menu-{?DEFAULT_LANG?} heraus geholt.");
343 case '0.5.5': // SQL queries for v0.5.5
344 addConfigAddSql('register_generate_password_empty', "ENUM('Y','N') NOT NULL DEFAULT 'Y'");
346 // Update notes (these will be set as task text!)
347 setExtensionUpdateNotes("Weiteren Menüpunkt aus <strong>menu-{?DEFAULT_LANG?} heraus geholt.");
350 case '0.5.6': // SQL queries for v0.5.6
351 // Register points data
352 registerExtensionPointsData('register_welcome', 'points', 'LOCKED', 'DIRECT');
354 // This depends on ext-sql_patches
355 addExtensionDependency('sql_patches');
358 setExtensionUpdateNotes("Anmeldewillkommensgutschrift wird nun über die Tabelle <strong>{OPEN_CONFIG}_MYSQL_PREFIX{CLOSE_CONFIG}_points_data</strong> verwaltet.");
361 case '0.5.7': // SQL queries for v0.5.7
363 registerFilter(__FILE__, __LINE__, 'pre_user_registration', 'PRE_USER_REGISTRATION_GENERIC', FALSE, TRUE, isExtensionDryRun());
365 // Register points data
366 registerExtensionPointsData('referral_bonus', 'points', 'LOCKED', 'DIRECT');
367 registerExtensionPointsData('referral_bonus_ref', 'points', 'LOCKED', 'DIRECT');
370 setExtensionUpdateNotes("Anmeldeformular komplett auf drei Filter umgestrickt (mehr dazu siehe Wiki) und weitere Verwendungszwecke registriert.");
375 case 'modify': // When the extension got modified
378 case 'test': // For testing purposes
381 case 'init': // Do stuff when extension is initialized
384 default: // Unknown extension mode
385 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));