2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 11/20/2004 *
4 * =================== Last change: 11/20/2004 *
6 * -------------------------------------------------------------------- *
7 * File : ext-top10.php *
8 * -------------------------------------------------------------------- *
9 * Short description : TOP10 clicker / points amount / etc. *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : TOP10-Klicker / Guthaben / Ref-Werber *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2013 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.1.2');
46 // Version history array (add more with , '0.0.1' and so on)
47 setExtensionVersionHistory(array('0.0.0', '0.0.1', '0.0.2', '0.0.3', '0.0.4', '0.0.5', '0.0.6', '0.0.7', '0.0.8', '0.0.9', '0.1.0', '0.1.1', '0.1.2'));
49 // This extension is deprecated
50 // @TODO Only deprecated when 'ext-ranking' is ready: setExtensionDeprecated('Y');
52 switch (getExtensionMode()) {
53 case 'setup': // Do stuff when installation is running
54 // SQL commands to run
55 addGuestMenuSql('main', 'top10', 'TOP-10', 7);
56 addAdminMenuSql('setup', 'config_top10', 'TOP-10 Listen', 'Stellen Sie hier ein, wie lang die TOP-Listen sein sollen, also wie viele Plätze angezeigt werden sollen.', 8);
57 addConfigAddSql('top10_max', 'TINYINT(3) UNSIGNED NOT NULL DEFAULT 10');
60 case 'remove': // Do stuff when removing extension
61 // SQL commands to run
62 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='top10' LIMIT 1");
63 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_top10' LIMIT 1");
66 case 'activate': // Do stuff when admin activates this extension
67 // SQL commands to run
68 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='Y',`locked`='N' WHERE `what`='top10' LIMIT 1");
71 case 'deactivate': // Do stuff when admin deactivates this extension
72 // SQL commands to run
73 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='N',`locked`='Y' WHERE `what`='top10' LIMIT 1");
76 case 'update': // Update an extension
77 switch (getCurrentExtensionVersion()) {
78 case '0.0.1': // SQL queries for v0.0.1
79 // Update notes (these will be set as task text!)
80 setExtensionUpdateNotes("Fehler <span class=\"bad\">Column: 'userid' in group statement is ambiguous</span> im Gastbereich beseitigt.");
83 case '0.0.2': // SQL queries for v0.0.2
84 // Update notes (these will be set as task text!)
85 setExtensionUpdateNotes("Wegen des Theme-Supportes hat sich die URL zur CSS-Datei geändert.");
88 case '0.0.3': // SQL queries for v0.0.3
89 // Update notes (these will be set as task text!)
90 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
93 case '0.0.4': // SQL queries for v0.0.4
94 // Update notes (these will be set as task text!)
95 setExtensionUpdateNotes("Problem mit Speicherung der Einstellungen beseitigt.");
98 case '0.0.5': // SQL queries for v0.0.5
99 // Update notes (these will be set as task text!)
100 setExtensionUpdateNotes("Menüpunkte im Gast-/Mitgliedsbereich können nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
103 case '0.0.6': // SQL queries for v0.0.6
104 // Update notes (these will be set as task text!)
105 setExtensionUpdateNotes("Im Gastbereich konnte als Nicht-Admin die Seite nicht geöffnet werden.");
108 case '0.0.7': // SQL queries for v0.0.7
109 // Update notes (these will be set as task text!)
110 setExtensionUpdateNotes("Design "Solid-Business" eingebaut.");
113 case '0.0.8': // SQL queries for v0.0.8
114 // Update notes (these will be set as task text!)
115 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> überflüssige HTML-Tags entfernt.");
118 case '0.0.9': // SQL queries for v0.0.9
119 // Update notes (these will be set as task text!)
120 setExtensionUpdateNotes("Rechtschreibefehler beseitigt.");
123 case '0.1.0': // SQL queries for v0.2.1
124 // Update notes (these will be set as task text!)
125 setExtensionUpdateNotes("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.");
128 case '0.1.1': // SQL queries for v0.1.1
129 // Update notes (these will be set as task text!)
130 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
133 case '0.1.2': // SQL queries for v0.1.2
134 // Update notes (these will be set as task text!)
135 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
140 case 'modify': // When the extension got modified
143 case 'test': // For testing purposes
146 case 'init': // Do stuff when extension is initialized
149 default: // Unknown extension mode
150 reportBug(__FILE__, __LINE__, sprintf('Unknown extension mode %s in extension %s detected.', getExtensionMode(), getCurrentExtensionName()));