win32 to unix line delimiters changed
[mailer.git] / 0.2.1 / inc / extensions / ext-holiday.php
index d6065d1a6255cfe479a07dc38ed7551d1e23af12..87849df5fb727b823dace0fad4bfb9ae2c6a44d2 100644 (file)
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 06/17/2004 *\r
- * ================                             Last change: 01/13/2006 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : ext-holiday.php                                  *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Holiday requests from members                    *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Ferienantraege von Mitgliedern                   *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
-       require($INC);\r
-}\r
-\r
-// Version number\r
-$EXT_VERSION = "0.2.1";\r
-\r
-// Auto-set extension version\r
-if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;\r
-\r
-// Version history array (add more with , "0.1" and so on)\r
-$EXT_VER_HISTORY = 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", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8", "0.1.9", "0.2.0", "0.2.1");\r
-\r
-switch ($EXT_LOAD_MODE)\r
-{\r
-case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)\r
-       // Create database\r
-       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_holidays";\r
-       $SQLs[] = "CREATE TABLE "._MYSQL_PREFIX."_user_holidays (\r
-id bigint(20) not null auto_increment,\r
-userid bigint(20) not null default '0',\r
-holiday_start varchar(10) not null default '0',\r
-holiday_end varchar(10) not null default '0',\r
-comments longblob not null,\r
-KEY (userid),\r
-PRIMARY KEY(id)\r
-) TYPE=MyISAM";\r
-\r
-       // Add default values to config\r
-       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_max bigint(20) not null default '30'";\r
-\r
-       // Add member menu\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_member_menu (action, what, title, sort, visible, locked) VALUES ('main', 'holiday', 'Urlaubsschaltung', '4', 'Y', 'Y')";\r
-\r
-       // Add admin menus\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', '', 'Urlaubsmanagement', '4', 'Hier k&ouml;nnen Sie Urlaubsschaltungen Ihrer Mitglieder auflisten oder auch wieder aufheben.')";\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', 'list_holiday', 'Auflisten', '1', 'Alle Urlaubsschaltungen auflisten.')";\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', 'del_holiday', 'Urlaub beenden', '2', 'Urlaubsschaltungen aufheben. Geben Sie bitte mehr als nur &quot;Verstoss gegen unsere AGBs&quot; ein!')";\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', 'config_holiday', 'Einstellungen', '3', 'Maximale Tage f&uuml;r Urlaub usw. einstellen.')";\r
-\r
-       // Remove 0 max mails per day\r
-       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE value='0' LIMIT 1";\r
-       break;\r
-\r
-case "remove": // Do stuff when removing extension\r
-       // SQL commands to run\r
-       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_holidays";\r
-       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_member_menu WHERE what='holiday' LIMIT 1";\r
-       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='holiday' LIMIT 4";\r
-       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE value='0' LIMIT 1";\r
-       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_max_receive (value, comment) VALUES('0', 'Urlaub')";\r
-       break;\r
-\r
-case "activate": // Do stuff when admin activates this extension\r
-       // SQL commands to run\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE action='main' AND what='holiday' LIMIT 1";\r
-       break;\r
-\r
-case "deactivate": // Do stuff when admin deactivates this extension\r
-       // SQL commands to run\r
-       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='Y' WHERE action='main' AND what='holiday' LIMIT 1";\r
-       break;\r
-\r
-case "update": // Update an extension\r
-       switch ($EXT_VER)\r
-       {\r
-       case "0.0.2": // SQL queries for v0.0.2\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Fehlende Abfrage im Mitlieder-Modul, on Erweiterung auch aktiviert ist.";\r
-               break;\r
-\r
-       case "0.0.3": // SQL queries for v0.0.3\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.";\r
-               break;\r
-\r
-       case "0.0.4": // SQL queries for v0.0.4\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Problem mit Speicherung der Einstellungen beseitigt.";\r
-               break;\r
-\r
-       case "0.0.5": // SQL queries for v0.0.5\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.";\r
-               break;\r
-\r
-       case "0.0.6": // SQL queries for v0.0.6\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Seit <A href=\"".SERVER_URL."/patches/340-Gast_Mitgliedsmenue_Deaktivieren.zip\">Patch 340</A> &uuml;berfl&uuml;ssige HTML-Tags entfernt.";\r
-               break;\r
-\r
-       case "0.0.7": // SQL queries for v0.0.7\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "IP-Nummer und Browserbezeichnung wird in Admin-Mails eingesetzt.";\r
-               break;\r
-\r
-       case "0.0.8": // SQL queries for v0.0.8\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Link zum Mitgliedsprofil in Funktion <U>ADMIN_USER_PROFILE_LINK()</U> ausgelagert.";\r
-               break;\r
-\r
-       case "0.0.9": // SQL queries for v0.0.9\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "W&ouml;rter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.";\r
-               break;\r
-\r
-       case "0.1.0": // SQL queries for v0.1.0\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Sicherheitsupdate: SQL-Anweisungen gesch&uuml;tzt.";\r
-               break;\r
-\r
-       case "0.1.1": // SQL queries for v0.1.1\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";\r
-               break;\r
-\r
-       case "0.1.2": // SQL queries for v0.1.2\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Abspeichern der Urlaubsanfrage korregiert.";\r
-               break;\r
-\r
-       case "0.1.3": // SQL queries for v0.1.3\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD holiday_active enum('Y', 'N') not null default 'N'";\r
-               $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE value='0' LIMIT 1";\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_lock bigint(20) not null default '".(60*60*24*2)."'";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Die Mitglieder-Accounts werden nicht mehr gesperrt, sondern nur auf <STRONG>Urlaub</STRONG> geschaltet. Lassen Sie sich nicht davon verwirren, dass sie &quot;freigegeben&quot; sind!";\r
-               break;\r
-\r
-       case "0.1.4": // SQL queries for v0.1.4\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_mode enum('DIRECT', 'RESET') not null default 'RESET'";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Urlaubsschaltung wird erst Abends um 00:00 Uhr aktiv und nicht durch die Beantragung. Dies kann nun auch auf direkte Umstellung eingestellt werden.";\r
-               break;\r
-\r
-       case "0.1.5": // SQL queries for v0.1.5\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_mode enum('DIRECT', 'RESET') not null default 'RESET'";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Sicherheitsupdate f&uuml;r die Include-Befehle.";\r
-               break;\r
-\r
-       case "0.1.6": // SQL queries for v0.1.6\r
-               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD holiday_activated bigint(20) not null default '0'";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Fehlende Tabellenspalte hinzugef&uuml;gt.";\r
-               break;\r
-\r
-       case "0.1.7": // SQL queries for v0.1.7\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "if-Anweisungen auf Funktion <STRONG>empty()</STRONG> umgestellt.";\r
-               break;\r
-\r
-       case "0.1.8": // SQL queries for v0.1.8\r
-               $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('member', '', 'list_holiday')";\r
-               $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('member', '', 'del_holiday')";\r
-               $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('config', '', 'config_holiday')";\r
-\r
-               // Depends on sql_patches (or you have to execute these both SQL statements by phpMyAdmin\r
-               $EXT_UPDATE_DEPENDS = "sql_patches";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Erweiterung in's neue Men&uuml;system integriert.";\r
-               break;\r
-\r
-       case "0.1.9": // SQL queries for v0.1.9\r
-               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET action='account', sort='2', title='In Urlaub' WHERE what='holiday' LIMIT 1";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Mitgliedsmen&uuml; komplett umgebaut.";\r
-               break;\r
-\r
-       case "0.2.0": // SQL queries for v0.2.0\r
-               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_admin_menu SET title = 'Urlaubsmanagement' WHERE action = 'holiday' AND what='' LIMIT 1";\r
-\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Mitgliedsmen&uuml; komplett umgebaut.";\r
-               break;\r
-\r
-       case "0.2.1": // SQL queries for v0.2.1\r
-               // Update notes (these will be set as task text!)\r
-               $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";\r
-               break;\r
-       }\r
-       break;\r
-\r
-default: // Do stuff when extension is loaded\r
-       $DUMMY = LOAD_CONFIG("0");\r
-       // Copy data to config array\r
-       $CONFIG['holiday_max']  = $DUMMY['holiday_max'];  // Maximum days for holiday\r
-       $CONFIG['holiday_lock'] = $DUMMY['holiday_lock']; // Lock deactivation in member area for X seconds\r
-       $CONFIG['holiday_mode'] = $DUMMY['holiday_mode']; // Mode for activating holiday\r
-       unset($DUMMY);\r
-\r
-       // Do we have a daily-reset-run?\r
-       if (((defined('__DAILY_RESET')) && ($CONFIG['holiday_mode'] == "RESET")) || ($CONFIG['holiday_mode'] == "DIRECT"))\r
-       {\r
-               // Ok, let's check for finished holidays and unlock those accounts\r
-               $INC_POOL[] = PATH."inc/reset/reset_holiday.php";\r
-       }\r
-       break;\r
-}\r
-\r
-// Language file prefix\r
-$EXT_LANG_PREFIX = "holiday";\r
-\r
-// Extension is always active?\r
-$EXT_ALWAYS_ACTIVE = "N";\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 06/17/2004 *
+ * ================                             Last change: 01/13/2006 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : ext-holiday.php                                  *
+ * -------------------------------------------------------------------- *
+ * Short description : Holiday requests from members                    *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Ferienantraege von Mitgliedern                   *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * For more information visit: http://www.mxchange.org                  *
+ *                                                                      *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or    *
+ * (at your option) any later version.                                  *
+ *                                                                      *
+ * This program is distributed in the hope that it will be useful,      *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
+ * GNU General Public License for more details.                         *
+ *                                                                      *
+ * You should have received a copy of the GNU General Public License    *
+ * along with this program; if not, write to the Free Software          *
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
+ * MA  02110-1301  USA                                                  *
+ ************************************************************************/
+
+// Some security stuff...
+if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+
+// Version number
+$EXT_VERSION = "0.2.1";
+
+// Auto-set extension version
+if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION;
+
+// Version history array (add more with , "0.1" and so on)
+$EXT_VER_HISTORY = 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", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8", "0.1.9", "0.2.0", "0.2.1");
+
+switch ($EXT_LOAD_MODE)
+{
+case "register": // Do stuff when installtion is running (modules.php?module=admin&action=login is called)
+       // Create database
+       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_holidays";
+       $SQLs[] = "CREATE TABLE "._MYSQL_PREFIX."_user_holidays (
+id bigint(20) not null auto_increment,
+userid bigint(20) not null default '0',
+holiday_start varchar(10) not null default '0',
+holiday_end varchar(10) not null default '0',
+comments longblob not null,
+KEY (userid),
+PRIMARY KEY(id)
+) TYPE=MyISAM";
+
+       // Add default values to config
+       $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_max bigint(20) not null default '30'";
+
+       // Add member menu
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_member_menu (action, what, title, sort, visible, locked) VALUES ('main', 'holiday', 'Urlaubsschaltung', '4', 'Y', 'Y')";
+
+       // Add admin menus
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', '', 'Urlaubsmanagement', '4', 'Hier k&ouml;nnen Sie Urlaubsschaltungen Ihrer Mitglieder auflisten oder auch wieder aufheben.')";
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', 'list_holiday', 'Auflisten', '1', 'Alle Urlaubsschaltungen auflisten.')";
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', 'del_holiday', 'Urlaub beenden', '2', 'Urlaubsschaltungen aufheben. Geben Sie bitte mehr als nur &quot;Verstoss gegen unsere AGBs&quot; ein!')";
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu (action, what, title, sort, descr) VALUES ('holiday', 'config_holiday', 'Einstellungen', '3', 'Maximale Tage f&uuml;r Urlaub usw. einstellen.')";
+
+       // Remove 0 max mails per day
+       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE value='0' LIMIT 1";
+       break;
+
+case "remove": // Do stuff when removing extension
+       // SQL commands to run
+       $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_user_holidays";
+       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_member_menu WHERE what='holiday' LIMIT 1";
+       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_admin_menu WHERE action='holiday' LIMIT 4";
+       $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE value='0' LIMIT 1";
+       $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_max_receive (value, comment) VALUES('0', 'Urlaub')";
+       break;
+
+case "activate": // Do stuff when admin activates this extension
+       // SQL commands to run
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='N' WHERE action='main' AND what='holiday' LIMIT 1";
+       break;
+
+case "deactivate": // Do stuff when admin deactivates this extension
+       // SQL commands to run
+       $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET visible='Y', locked='Y' WHERE action='main' AND what='holiday' LIMIT 1";
+       break;
+
+case "update": // Update an extension
+       switch ($EXT_VER)
+       {
+       case "0.0.2": // SQL queries for v0.0.2
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Fehlende Abfrage im Mitlieder-Modul, on Erweiterung auch aktiviert ist.";
+               break;
+
+       case "0.0.3": // SQL queries for v0.0.3
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist.";
+               break;
+
+       case "0.0.4": // SQL queries for v0.0.4
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Problem mit Speicherung der Einstellungen beseitigt.";
+               break;
+
+       case "0.0.5": // SQL queries for v0.0.5
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Men&uuml;punkte im Gast-/Mitgliedsbereich k&ouml;nnen nicht mehr aufgerufen werden, wenn die Erweiterung deaktiviert ist.";
+               break;
+
+       case "0.0.6": // SQL queries for v0.0.6
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Seit <A href=\"".SERVER_URL."/patches/340-Gast_Mitgliedsmenue_Deaktivieren.zip\">Patch 340</A> &uuml;berfl&uuml;ssige HTML-Tags entfernt.";
+               break;
+
+       case "0.0.7": // SQL queries for v0.0.7
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "IP-Nummer und Browserbezeichnung wird in Admin-Mails eingesetzt.";
+               break;
+
+       case "0.0.8": // SQL queries for v0.0.8
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Link zum Mitgliedsprofil in Funktion <U>ADMIN_USER_PROFILE_LINK()</U> ausgelagert.";
+               break;
+
+       case "0.0.9": // SQL queries for v0.0.9
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "W&ouml;rter <STRONG>Mailtausch</STRONG>, <STRONG>Mailtausches</STRONG> und <STRONG>Mailtauscher</STRONG> sind austauschbar.";
+               break;
+
+       case "0.1.0": // SQL queries for v0.1.0
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Sicherheitsupdate: SQL-Anweisungen gesch&uuml;tzt.";
+               break;
+
+       case "0.1.1": // SQL queries for v0.1.1
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Abspeichern von Einstellungen repariert.";
+               break;
+
+       case "0.1.2": // SQL queries for v0.1.2
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Abspeichern der Urlaubsanfrage korregiert.";
+               break;
+
+       case "0.1.3": // SQL queries for v0.1.3
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD holiday_active enum('Y', 'N') not null default 'N'";
+               $SQLs[] = "DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_max_receive WHERE value='0' LIMIT 1";
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_lock bigint(20) not null default '".(60*60*24*2)."'";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Die Mitglieder-Accounts werden nicht mehr gesperrt, sondern nur auf <STRONG>Urlaub</STRONG> geschaltet. Lassen Sie sich nicht davon verwirren, dass sie &quot;freigegeben&quot; sind!";
+               break;
+
+       case "0.1.4": // SQL queries for v0.1.4
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_mode enum('DIRECT', 'RESET') not null default 'RESET'";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Urlaubsschaltung wird erst Abends um 00:00 Uhr aktiv und nicht durch die Beantragung. Dies kann nun auch auf direkte Umstellung eingestellt werden.";
+               break;
+
+       case "0.1.5": // SQL queries for v0.1.5
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_config ADD holiday_mode enum('DIRECT', 'RESET') not null default 'RESET'";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Sicherheitsupdate f&uuml;r die Include-Befehle.";
+               break;
+
+       case "0.1.6": // SQL queries for v0.1.6
+               $SQLs[] = "ALTER TABLE "._MYSQL_PREFIX."_user_data ADD holiday_activated bigint(20) not null default '0'";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Fehlende Tabellenspalte hinzugef&uuml;gt.";
+               break;
+
+       case "0.1.7": // SQL queries for v0.1.7
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "if-Anweisungen auf Funktion <STRONG>empty()</STRONG> umgestellt.";
+               break;
+
+       case "0.1.8": // SQL queries for v0.1.8
+               $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('member', '', 'list_holiday')";
+               $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('member', '', 'del_holiday')";
+               $SQLs[] = "INSERT INTO "._MYSQL_PREFIX."_admin_menu_las (la_id, la_action, la_what) VALUES ('config', '', 'config_holiday')";
+
+               // Depends on sql_patches (or you have to execute these both SQL statements by phpMyAdmin
+               $EXT_UPDATE_DEPENDS = "sql_patches";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Erweiterung in's neue Men&uuml;system integriert.";
+               break;
+
+       case "0.1.9": // SQL queries for v0.1.9
+               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_member_menu SET action='account', sort='2', title='In Urlaub' WHERE what='holiday' LIMIT 1";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Mitgliedsmen&uuml; komplett umgebaut.";
+               break;
+
+       case "0.2.0": // SQL queries for v0.2.0
+               $SQLs[] = "UPDATE "._MYSQL_PREFIX."_admin_menu SET title = 'Urlaubsmanagement' WHERE action = 'holiday' AND what='' LIMIT 1";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Mitgliedsmen&uuml; komplett umgebaut.";
+               break;
+
+       case "0.2.1": // SQL queries for v0.2.1
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Fehlerhinweis bei deaktivierter Erweiterung verbessert.";
+               break;
+       }
+       break;
+
+default: // Do stuff when extension is loaded
+       $DUMMY = LOAD_CONFIG("0");
+       // Copy data to config array
+       $CONFIG['holiday_max']  = $DUMMY['holiday_max'];  // Maximum days for holiday
+       $CONFIG['holiday_lock'] = $DUMMY['holiday_lock']; // Lock deactivation in member area for X seconds
+       $CONFIG['holiday_mode'] = $DUMMY['holiday_mode']; // Mode for activating holiday
+       unset($DUMMY);
+
+       // Do we have a daily-reset-run?
+       if (((defined('__DAILY_RESET')) && ($CONFIG['holiday_mode'] == "RESET")) || ($CONFIG['holiday_mode'] == "DIRECT"))
+       {
+               // Ok, let's check for finished holidays and unlock those accounts
+               $INC_POOL[] = PATH."inc/reset/reset_holiday.php";
+       }
+       break;
+}
+
+// Language file prefix
+$EXT_LANG_PREFIX = "holiday";
+
+// Extension is always active?
+$EXT_ALWAYS_ACTIVE = "N";
+
+//
+?>