Better report this instead of silent logging
[mailer.git] / inc / extensions / ext-timezone.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/28/2010 *
4  * ===================                          Last change: 06/28/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : ext-timezone.php                                 *
8  * -------------------------------------------------------------------- *
9  * Short description : Extension for changing timezone                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Erweiterung zum Aendern der Zeitzone             *
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.0.0');
45
46 // Version history array (add more with , '0.0.1' and so on)
47 setExtensionVersionHistory(array('0.0.0'));
48
49 // Keep this extension always active!
50 setExtensionAlwaysActive('Y');
51
52 switch (getExtensionMode()) {
53         case 'register': // 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&ouml;nnen hier konfiguriert werden.', 10);
56
57                 // Register filter
58                 registerFilter(__FILE__, __LINE__, 'init', 'INIT_TIMEZONE', FALSE, TRUE, isExtensionDryRun());
59                 break;
60
61         case 'remove': // Do stuff when removing extension
62                 // Remove admin menu
63                 addExtensionSQL("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_timezone' LIMIT 1");
64
65                 // Unregister filter
66                 unregisterFilter(__FILE__, __LINE__, 'init', 'INIT_TIMEZONE', TRUE, isExtensionDryRun());
67                 break;
68
69         case 'activate': // Do stuff when admin activates this extension
70                 // SQL commands to run
71                 addExtensionSql('');
72                 break;
73
74         case 'deactivate': // Do stuff when admin deactivates this extension
75                 // SQL commands to run
76                 addExtensionSql('');
77                 break;
78
79         case 'update': // Update an extension
80                 switch (getCurrentExtensionVersion()) {
81                         case '0.0.1': // SQL queries for v0.0.1
82                                 addExtensionSql("");
83
84                                 // Update notes (these will be set as task text!)
85                                 setExtensionUpdateNotes("Beschreinungstext des Updates.");
86                                 break;
87
88                                 // Update notes (these will be set as task text!)
89                                 setExtensionUpdateNotes("Filter zum Zur&uuml;cksetzens des fehlgeschlagenen Mitgliederlogins hinzugef&uuml;gt (internes TODO).");
90                                 break;
91                 } // END - switch
92                 break;
93
94         case 'modify': // When the extension got modified
95                 break;
96
97         case 'test': // For testing purposes
98                 break;
99
100         case 'init': // Do stuff when extension is initialized
101                 break;
102
103         default: // Unknown extension mode
104                 reportBug(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName()));
105                 break;
106 } // END - switch
107
108 // [EOF]
109 ?>