56f3b685635cafd32196905c7a0e498d1b6e0f4f
[mailer.git] / inc / extensions / ext-repair.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 04/24/2004 *
4  * ================                             Last change: 05/02/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-repair.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Repair extension                                 *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Reperatur-Erweiterung                            *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // Version number
42 $EXT_VERSION = "0.1.5";
43
44 // Auto-set extension version
45 if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;
46
47 // Version history array (add more with , "0.1" and so on)
48 $EXT_VER_HISTORY = array("0.0", "0.1", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5");
49
50 switch ($EXT_LOAD_MODE)
51 {
52 case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)
53         // SQL commands to run
54         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('repair', NULL, 'Reperaturen', '7', 'Repariert u.a. die Kategorie-Auswahlen der Mitglieder usw.')";
55         $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('repair', 'repair_cats', 'Kategorieauswahlen', '1', 'Repariert die Kategorieauswahlen Ihrer Mitglieder.')";
56         break;
57
58 case "remove": // Do stuff when removing extension
59         // SQL commands to run
60         $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='repair' LIMIT 5";
61         break;
62
63 case "activate": // Do stuff when admin activates this extension
64         // SQL commands to run
65         $SQLs[] = "";
66         break;
67
68 case "deactivate": // Do stuff when admin deactivates this extension
69         // SQL commands to run
70         $SQLs[] = "";
71         break;
72
73 case "update": // Update an extension
74         switch ($EXT_VER)
75         {
76         case "0.1": // SQL queries for v0.1
77                 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('repair', 'repair_amenu', 'Admin-Men&uuml;', 2, 'Repariert die Gewichtung des Admin-Men&uuml;-Systems')";
78                 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('repair', 'repair_gmenu', 'Gast-Men&uuml;', 3, 'Repariert die Gewichtung des G&auml;ste-Men&uuml;-Systems')";
79                 $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('repair', 'repair_mmenu', 'Mitglied-Men&uuml;', 4, 'Repariert die Gewichtung des Mitglieder-Men&uuml;-Systems')";
80
81                 // Update notes (these will be set as task text!)
82                 $UPDATE_NOTES = "F&uuml;gt ein Men&uuml;punkt zur Reperatur der Gewichtung des Admin-Men&uuml;s hinzu.";
83                 break;
84
85         case "0.1.1": // SQL queries for v0.1.1
86                 // Update notes (these will be set as task text!)
87                 $UPDATE_NOTES = "Dummy-Release im Intranet??? Hmmmm....";
88                 break;
89
90         case "0.1.2": // SQL queries for v0.1.2
91                 // Update notes (these will be set as task text!)
92                 $UPDATE_NOTES = "Seit <A href=\"".SERVER_URL."/patches/340-Gast_Mitgliedsmenue_Deaktivieren.zip\">Patch 340</A> &uuml;berfl&uuml;ssige HTML-Tags entfernt.";
93                 break;
94
95         case "0.1.3": // SQL queries for v0.1.3
96                 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_admin_menu SET what='repair_amnu' WHERE what='repair_amenu' LIMIT 1";
97                 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_admin_menu SET what='repair_gmnu' WHERE what='repair_gmenu' LIMIT 1";
98                 $SQLs[] = "UPDATE "._MYSQL_PREFIX."_admin_menu SET what='repair_mmnu' WHERE what='repair_mmenu' LIMIT 1";
99
100                 // Update notes (these will be set as task text!)
101                 $UPDATE_NOTES = "Konflikt mit Men&uuml;-Erweiterung und dieser behoben. Dateien what-repair_*menu.php sind <U>obsulete</U> (veraltet, bitte l&ouml;schen!)";
102                 break;
103
104         case "0.1.4": // SQL queries for v0.1.4
105                 // Update notes (these will be set as task text!)
106                 $UPDATE_NOTES = "HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert.";
107                 break;
108
109         case "0.1.5": // SQL queries for v0.1.5
110                 // Update notes (these will be set as task text!)
111                 $UPDATE_NOTES = "Sicherheitsupdate f&uuml;r die Include-Befehle.";
112                 break;
113         }
114         break;
115
116 default: // Do stuff when extension is loaded
117         break;
118 }
119 // Language file prefix
120 $EXT_LANG_PREFIX = "repair";
121
122 // Extension is always active?
123 $EXT_ALWAYS_ACTIVE = "N";
124
125 //
126 ?>