2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 03/22/2004 *
4 * =================== Last change: 06/28/2004 *
6 * -------------------------------------------------------------------- *
7 * File : ext-theme.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Theme Management *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Theme-Management *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 - 2009 by Roland Haeder *
21 * Copyright (c) 2009, 2010 by Mailer Developer Team *
22 * For more information visit: http://www.mxchange.org *
24 * This program is free software; you can redistribute it and/or modify *
25 * it under the terms of the GNU General Public License as published by *
26 * the Free Software Foundation; either version 2 of the License, or *
27 * (at your option) any later version. *
29 * This program is distributed in the hope that it will be useful, *
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
32 * GNU General Public License for more details. *
34 * You should have received a copy of the GNU General Public License *
35 * along with this program; if not, write to the Free Software *
36 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
46 setThisExtensionVersion('0.1.1');
48 // Version history array (add more with , '0.1.0' and so on)
49 setExtensionVersionHistory(array('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'));
51 switch (getExtensionMode()) {
52 case 'register': // Do stuff when installation is running (modules.php?module=admin is called)
53 // SQL commands to run
56 case 'remove': // Do stuff when removing extension
58 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_themes`");
61 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `action`='theme'");
63 // Delete guest menu entries
64 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `action`='themes'");
66 // Delete member menu entries
67 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_member_menu` WHERE `action`='themes' OR `what`='themes'");
70 unregisterFilter('init', 'HANDLE_THEME_CHANGE', true, getExtensionDryRun());
71 unregisterFilter('member_login_check', 'SET_USERS_THEME', true, getExtensionDryRun());
74 case 'activate': // Do stuff when admin activates this extension
75 // SQL commands to run
79 case 'deactivate': // Do stuff when admin deactivates this extension
80 // SQL commands to run
84 case 'update': // Update an extension
85 switch (getCurrentExtensionVersion()) {
86 case '0.0.1': // SQL queries for v0.0.1
87 // Update notes (these will be set as task text!)
88 setExtensionUpdateNotes("HTML-Code für ein Zeilen-Template ausgelagert.");
91 case '0.0.2': // SQL queries for v0.0.2
92 // Update notes (these will be set as task text!)
93 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
96 case '0.0.3': // SQL queries for v0.0.3
97 // Update notes (these will be set as task text!)
98 setExtensionUpdateNotes("Im Menüpunkt "Prüfen" wurden die bereits installierten und auch aktuellen Themes nicht ausgeblendet.");
101 case '0.0.4': // SQL queries for v0.0.4
102 // Update notes (these will be set as task text!)
103 setExtensionUpdateNotes("Sicherheitsupdate für die Include-Befehle.");
106 case '0.0.5': // SQL queries for v0.0.5
107 // Update notes (these will be set as task text!)
108 setExtensionUpdateNotes("<strong>setSession()</strong> mit @-Zeichen gegen ungewollte Ausgaben abgesichert.");
111 case '0.0.6': // SQL queries for v0.0.6
112 // Update notes (these will be set as task text!)
113 setExtensionUpdateNotes("Variablen-Handling scripteweit geändert.");
116 case '0.0.7': // SQL queries for v0.0.7
117 // Update notes (these will be set as task text!)
118 setExtensionUpdateNotes("Ungültiges Update.");
121 case '0.0.8': // SQL queries for v0.0.8
123 addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_themes`");
124 addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_themes` (
125 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
126 `theme_path` VARCHAR(255) NOT NULL DEFAULT '',
127 `theme_name` VARCHAR(255) NOT NULL DEFAULT '',
128 `theme_active` ENUM('Y','N') NOT NULL DEFAULT 'N',
129 `theme_ver` VARCHAR(255) NOT NULL DEFAULT '0.0',
131 UNIQUE KEY (`theme_path`),
132 INDEX (`theme_active`)
133 ) TYPE={?_TABLE_TYPE?} COMMENT='Themes'");
136 addAdminMenuSql('theme', NULL, 'Themes','Verwalten Sie hier alle Designs (Themes) Ihres {?mt_word2?}.', 8);
137 addAdminMenuSql('theme','theme_import','Importieren','Es wird das Verzeichnis "theme" nach neuen Ordnern durchsucht und anschliessend in die Datenbank gesperrt aufgenommen.', 1);
138 addAdminMenuSql('theme','theme_edit','Modifizieren','Ändern Sie Titel, Freigaben usw. an den Themes. Sie können bis auf das Standart-Theme "default" auch Themes aus der Datenbank entfernen. Vorher sollten Sie es jedoch vom Server löschen, damit es niht erneut importiert werden kann.', 2);
139 addAdminMenuSql('theme','theme_check','Prüfen','Nach neuen Themes suchen bzw. nach Updates zu den Themes suchen.', 3);
142 addGuestMenuSql('themes',NULL,'Design-Auswahl','Y','N',4);
145 addMemberMenuSql('themes',NULL,'Design-Auswahl','N','Y',3);
146 addMemberMenuSql('main','themes','Designs','N','Y',6);
147 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `sort`=8 WHERE `action`='themes' LIMIT 1");
148 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `action`='account', `sort`=1, `title`='Designs' WHERE `what`='themes' LIMIT 1");
151 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_user_data` ADD `curr_theme` VARCHAR(255) NOT NULL DEFAULT 'default'");
153 // Update notes (these will be set as task text!)
154 setExtensionUpdateNotes("Update von <u>sql_patches</u> übertragen. (Kann Fehlermeldungen verursacht haben!)");
157 case '0.0.9': // SQL queries for v0.0.9
159 addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `default_theme` VARCHAR(255) NOT NULL DEFAULT 'default'");
161 // Update notes (these will be set as task text!)
162 setExtensionUpdateNotes("Fehlende Konfiguration hinzugefügt.");
165 case '0.1.0': // SQL queries for v0.1.0
167 registerFilter('init', 'HANDLE_THEME_CHANGE', false, true, getExtensionDryRun());
169 // Update notes (these will be set as task text!)
170 setExtensionUpdateNotes("Ändern des Designs nun im Filter (internes TODO).");
173 case '0.1.1': // SQL queries for v0.1.1
175 registerFilter('member_login_check', 'SET_USERS_THEME', false, true, getExtensionDryRun());
177 // Update notes (these will be set as task text!)
178 setExtensionUpdateNotes("Setzen des Mitgliedes' eigener Design-Auswahl per Filter (internes TODO).");
183 case 'modify': // When the extension got modified
186 case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305.
189 case 'init': // Do stuff when extension is initialized
192 default: // Unknown extension mode
193 logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));