Updated copyright year.
[mailer.git] / inc / extensions / holiday / mode-update.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 06/17/2004 *
4  * ===================                          Last change: 01/13/2006 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : mode-update.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Holiday requests from members                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Ferienantraege von Mitgliedern                   *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         die();
36 } // END - if
37
38                 switch (getCurrentExtensionVersion()) {
39                         case '0.0.2': // SQL queries for v0.0.2
40                                 // Update notes (these will be set as task text!)
41                                 setExtensionUpdateNotes("Fehlende Abfrage im Mitlieder-Modul, on Erweiterung auch aktiviert ist.");
42                                 break;
43
44                         case '0.0.3': // SQL queries for v0.0.3
45                                 // Update notes (these will be set as task text!)
46                                 setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.");
47                                 break;
48
49                         case '0.0.4': // SQL queries for v0.0.4
50                                 // Update notes (these will be set as task text!)
51                                 setExtensionUpdateNotes("Problem mit Speicherung der Einstellungen beseitigt.");
52                                 break;
53
54                         case '0.0.5': // SQL queries for v0.0.5
55                                 // Update notes (these will be set as task text!)
56                                 setExtensionUpdateNotes("Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.");
57                                 break;
58
59                         case '0.0.6': // SQL queries for v0.0.6
60                                 // Update notes (these will be set as task text!)
61                                 setExtensionUpdateNotes("Seit <strong>Patch 340</strong> &uuml;berfl&uuml;ssige HTML-Tags entfernt.");
62                                 break;
63
64                         case '0.0.7': // SQL queries for v0.0.7
65                                 // Update notes (these will be set as task text!)
66                                 setExtensionUpdateNotes("IP-Nummer und Browserbezeichnung wird in Admin-Mails eingesetzt.");
67                                 break;
68
69                         case '0.0.8': // SQL queries for v0.0.8
70                                 // Update notes (these will be set as task text!)
71                                 setExtensionUpdateNotes("Link zum Mitgliedsprofil in Funktion <u>generateUserProfileLink()</u> ausgelagert.");
72                                 break;
73
74                         case '0.0.9': // SQL queries for v0.0.9
75                                 // Update notes (these will be set as task text!)
76                                 setExtensionUpdateNotes("W&ouml;rter <strong>{?mt_word?}</strong>, <strong>{?mt_word2?}</strong> und <strong>{?mt_word3?}</strong> sind austauschbar.");
77                                 break;
78
79                         case '0.1.0': // SQL queries for v0.1.0
80                                 // Update notes (these will be set as task text!)
81                                 setExtensionUpdateNotes("Sicherheitsupdate: SQL-Anweisungen gesch&uuml;tzt.");
82                                 break;
83
84                         case '0.1.1': // SQL queries for v0.1.1
85                                 // Update notes (these will be set as task text!)
86                                 setExtensionUpdateNotes("Abspeichern von Einstellungen repariert.");
87                                 break;
88
89                         case '0.1.2': // SQL queries for v0.1.2
90                                 // Update notes (these will be set as task text!)
91                                 setExtensionUpdateNotes("Abspeichern der Urlaubsanfrage korregiert.");
92                                 break;
93
94                         case '0.1.3': // SQL queries for v0.1.3
95                                 addExtensionAddTableColumnSql('user_data', 'holiday_active', "ENUM('Y','N') NOT NULL DEFAULT 'N'");
96                                 addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_max_receive` WHERE `value`=0 LIMIT 1");
97                                 addConfigAddSql('holiday_lock', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT ' . (getOneDay() * 2));
98
99                                 // Update notes (these will be set as task text!)
100                                 setExtensionUpdateNotes("Die Mitgliedaccounts werden nicht mehr gesperrt, sondern nur auf <strong>Urlaub</strong> geschaltet. Lassen Sie sich nicht davon verwirren, dass sie &quot;freigegeben&quot; sind!");
101                                 break;
102
103                         case '0.1.4': // SQL queries for v0.1.4
104                                 addConfigAddSql('holiday_mode', "ENUM('DIRECT','RESET') NOT NULL DEFAULT 'RESET'");
105
106                                 // Update notes (these will be set as task text!)
107                                 setExtensionUpdateNotes("Urlaubsschaltung wird erst Abends um 00:00 Uhr aktiv und nicht durch die Beantragung. Dies kann nun auch auf direkte Umstellung eingestellt werden.");
108                                 break;
109
110                         case '0.1.5': // SQL queries for v0.1.5
111                                 // Update notes (these will be set as task text!)
112                                 setExtensionUpdateNotes("Sicherheitsupdate f&uuml;r die Include-Befehle.");
113                                 break;
114
115                         case '0.1.6': // SQL queries for v0.1.6
116                                 addExtensionAddTableColumnSql('user_data', 'holiday_activated', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 0');
117
118                                 // Update notes (these will be set as task text!)
119                                 setExtensionUpdateNotes("Fehlende Tabellenspalte hinzugef&uuml;gt.");
120                                 break;
121
122                         case '0.1.7': // SQL queries for v0.1.7
123                                 // Update notes (these will be set as task text!)
124                                 setExtensionUpdateNotes("if-Anweisungen auf Funktion <strong>empty()</strong> umgestellt.");
125                                 break;
126
127                         case '0.1.8': // SQL queries for v0.1.8
128                                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_admin_menu_las` (`la_id`, `la_action`, `la_what`) VALUES ('member', '', 'list_holiday')");
129                                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_admin_menu_las` (`la_id`, `la_action`, `la_what`) VALUES ('member', '', 'del_holiday')");
130                                 addExtensionSql("INSERT INTO `{?_MYSQL_PREFIX?}_admin_menu_las` (`la_id`, `la_action`, `la_what`) VALUES ('config', '', 'config_holiday')");
131
132                                 // Update notes (these will be set as task text!)
133                                 setExtensionUpdateNotes("Erweiterung in's neue Men&uuml;system integriert.");
134                                 break;
135
136                         case '0.1.9': // SQL queries for v0.1.9
137                                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_member_menu` SET `action`='account',`title`='In Urlaub',`sort`=2 WHERE `what`='holiday' LIMIT 1");
138
139                                 // Update notes (these will be set as task text!)
140                                 setExtensionUpdateNotes("Mitgliedsmen&uuml; komplett umgebaut.");
141                                 break;
142
143                         case '0.2.0': // SQL queries for v0.2.0
144                                 addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_admin_menu` SET `title`='Urlaubsmanagement' WHERE `action`='holiday' AND (`what`='' OR `what` IS NULL) LIMIT 1");
145
146                                 // Update notes (these will be set as task text!)
147                                 setExtensionUpdateNotes("Mitgliedsmen&uuml; komplett umgebaut.");
148                                 break;
149
150                         case '0.2.1': // SQL queries for v0.2.1
151                                 // Update notes (these will be set as task text!)
152                                 setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert.");
153                                 break;
154
155                         case '0.2.2': // SQL queries for v0.2.2
156                                 // Register filter
157                                 registerFilter(__FILE__, __LINE__, 'user_exclusion_sql', 'HOLIDAY_USER_EXCLUSION_SQL', FALSE, TRUE, isExtensionDryRun());
158
159                                 // Update notes (these will be set as task text!)
160                                 setExtensionUpdateNotes("Filter registriert f&uuml;r Mitglied-Ausschluss, die in Urlaub sind.");
161                                 break;
162
163                         case '0.2.3': // SQL queries for v0.2.3
164                                 // Register filter
165                                 registerFilter(__FILE__, __LINE__, 'pre_mail_recipient_check', 'CHECK_USER_HOLIDAY', FALSE, TRUE, isExtensionDryRun());
166                                 registerFilter(__FILE__, __LINE__, 'pre_category_mail_order_check', 'PRE_USERID_HOLIDAY_CHECK', FALSE, TRUE, isExtensionDryRun());
167                                 break;
168                 } // END - switch
169
170 // [EOF]
171 ?>