2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 06/28/2010 *
4 * =================== Last change: 06/28/2010 *
6 * -------------------------------------------------------------------- *
7 * File : ext-timezone.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Extension for changing timezone *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Erweiterung zum Aendern der Zeitzone *
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.0.0');
46 // Version history array (add more with , '0.0.1' and so on)
47 setExtensionVersionHistory(array('0.0.0'));
49 // Keep this extension always active!
50 setExtensionAlwaysActive('Y');
52 switch (getExtensionMode()) {
53 case 'setup': // Do stuff when installation is running
54 addConfigAddSql('timezone', "VARCHAR(255) NOT NULL DEFAULT 'Europe/Berlin'");
55 addAdminMenuSql('setup', 'config_timezone', 'Zeitzone', 'Einstellungen an der Zeitzone können hier konfiguriert werden.', 10);
58 registerFilter(__FILE__, __LINE__, 'init', 'INIT_TIMEZONE', FALSE, TRUE, isExtensionDryRun());
61 case 'remove': // Do stuff when removing extension
63 addExtensionSQL("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_timezone' LIMIT 1");
66 unregisterFilter(__FILE__, __LINE__, 'init', 'INIT_TIMEZONE', TRUE, isExtensionDryRun());
69 case 'activate': // Do stuff when admin activates this extension
70 // SQL commands to run
74 case 'deactivate': // Do stuff when admin deactivates this extension
75 // SQL commands to run
79 case 'update': // Update an extension
80 switch (getCurrentExtensionVersion()) {
81 case '0.0.1': // SQL queries for v0.0.1
84 // Update notes (these will be set as task text!)
85 setExtensionUpdateNotes("Beschreinungstext des Updates.");
88 // Update notes (these will be set as task text!)
89 setExtensionUpdateNotes("Filter zum Zurücksetzens des fehlgeschlagenen Mitgliederlogins hinzugefügt (internes TODO).");
94 case 'modify': // When the extension got modified
97 case 'test': // For testing purposes
100 case 'init': // Do stuff when extension is initialized
103 default: // Unknown extension mode
104 reportBug(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));