7cd959f96a9b24a8e5d765540d28b98c117c3213
[mailer.git] / inc / extensions / ext-top10.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/20/2004 *
4  * ===================                          Last change: 11/20/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-top10.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : TOP10 clicker / points amount / etc.             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : TOP10-Klicker / Guthaben / Ref-Werber            *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
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                      *
21  *                                                                      *
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.                                  *
26  *                                                                      *
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.                         *
31  *                                                                      *
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,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Version number
44 setThisExtensionVersion('0.1.2');
45
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'));
48
49 switch (getExtensionMode()) {
50         case 'setup': // Do stuff when installation is running
51                 // SQL commands to run
52                 addGuestMenuSql('main', 'top10', 'TOP-10', 7);
53                 addAdminMenuSql('setup', 'config_top10', 'TOP-10 Listen', 'Stellen Sie hier ein, wie lang die TOP-Listen sein sollen, also wie viele Pl&auml;tze angezeigt werden sollen.', 8);
54                 addConfigAddSql('top10_max', 'TINYINT(3) UNSIGNED NOT NULL DEFAULT 10');
55                 break;
56
57         case 'remove': // Do stuff when removing extension
58                 // SQL commands to run
59                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='top10' LIMIT 1");
60                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_top10' LIMIT 1");
61                 break;
62
63         case 'activate': // Do stuff when admin activates this extension
64                 // SQL commands to run
65                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='Y',`locked`='N' WHERE `what`='top10' LIMIT 1");
66                 break;
67
68         case 'deactivate': // Do stuff when admin deactivates this extension
69                 // SQL commands to run
70                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='N',`locked`='Y' WHERE `what`='top10' LIMIT 1");
71                 break;
72
73         case 'update': // Update an extension
74                 switch (getCurrentExtensionVersion()) {
75                         case '0.0.1': // SQL queries for v0.0.1
76                                 // Update notes (these will be set as task text!)
77                                 setExtensionUpdateNotes("Fehler <span class=\"bad\">Column: 'userid' in group statement is ambiguous</span> im Gastbereich beseitigt.");
78                                 break;
79
80                         case '0.0.2': // SQL queries for v0.0.2
81                                 // Update notes (these will be set as task text!)
82                                 setExtensionUpdateNotes("Wegen des Theme-Supportes hat sich die URL zur CSS-Datei ge&auml;ndert.");
83                                 break;
84
85                         case '0.0.3': // SQL queries for v0.0.3
86                                 // Update notes (these will be set as task text!)
87                                 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
88                                 break;
89
90                         case '0.0.4': // SQL queries for v0.0.4
91                                 // Update notes (these will be set as task text!)
92                                 setExtensionUpdateNotes("Problem mit Speicherung der Einstellungen beseitigt.");
93                                 break;
94
95                         case '0.0.5': // SQL queries for v0.0.5
96                                 // Update notes (these will be set as task text!)
97                                 setExtensionUpdateNotes("Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
98                                 break;
99
100                         case '0.0.6': // SQL queries for v0.0.6
101                                 // Update notes (these will be set as task text!)
102                                 setExtensionUpdateNotes("Im Gastbereich konnte als Nicht-Admin die Seite nicht ge&ouml;ffnet werden.");
103                                 break;
104
105                         case '0.0.7': // SQL queries for v0.0.7
106                                 // Update notes (these will be set as task text!)
107                                 setExtensionUpdateNotes("Design &quot;Solid-Business&quot; eingebaut.");
108                                 break;
109
110                         case '0.0.8': // SQL queries for v0.0.8
111                                 // Update notes (these will be set as task text!)
112                                 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
113                                 break;
114
115                         case '0.0.9': // SQL queries for v0.0.9
116                                 // Update notes (these will be set as task text!)
117                                 setExtensionUpdateNotes("Rechtschreibefehler beseitigt.");
118                                 break;
119
120                         case '0.1.0': // SQL queries for v0.2.1
121                                 // Update notes (these will be set as task text!)
122                                 setExtensionUpdateNotes("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.");
123                                 break;
124
125                         case '0.1.1': // SQL queries for v0.1.1
126                                 // Update notes (these will be set as task text!)
127                                 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
128                                 break;
129
130                         case '0.1.2': // SQL queries for v0.1.2
131                                 // Update notes (these will be set as task text!)
132                                 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
133                                 break;
134                 } // END - switch
135                 break;
136
137         case 'modify': // When the extension got modified
138                 break;
139
140         case 'test': // For testing purposes
141                 break;
142
143         case 'init': // Do stuff when extension is initialized
144                 break;
145
146         default: // Unknown extension mode
147                 reportBug(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
148                 break;
149 } // END - switch
150
151 // [EOF]
152 ?>