]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-holiday.php
addCreateTableSql() is now more encapsulated
[mailer.git] / inc / extensions / ext-holiday.php
index 6cf19ae60257b3e14f6f66b1804c1dd6ebd4a09f..dedf0828dd5db95d1207ea21fc67bd6bf2603f4d 100644 (file)
@@ -43,28 +43,28 @@ if (!defined('__SECURITY')) {
 // Version number
 setThisExtensionVersion('0.2.1');
 
-// Version history array (add more with , '0.1.0' and so on)
-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', '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'));
+// Version history array (add more with , '0.0.1' and so on)
+setExtensionVersionHistory(array('0.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 (getExtensionMode()) {
        case 'register': // Do stuff when installation is running
                // Create database
                addDropTableSql('user_holidays');
-               addCreateTableSql('user_holidays', "(
+               addCreateTableSql('user_holidays', "
 `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT,
 `userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
 `holiday_start` VARCHAR(10) NOT NULL DEFAULT 0,
 `holiday_end` VARCHAR(10) NOT NULL DEFAULT 0,
 `comments` LONGTEXT NOT NULL,
-INDEX (`userid`),
-PRIMARY KEY (`id`)
-) ENGINE = {?_TABLE_TYPE?} CHARACTER SET utf8 COLLATE utf8_general_ci COMMENT = 'User holiday data'");
+PRIMARY KEY (`id`),
+INDEX (`userid`)",
+                       'User holiday data');
 
                // Add default values to config
                addConfigAddSql('holiday_max', 'BIGINT(20) UNSIGNED NOT NULL DEFAULT 30');
 
                // Add member menu
-               addMemberMenuSql('main', 'holiday', 'Urlaubsschaltung', 'Y', 'Y', 4);
+               addMemberMenuSql('main', 'holiday', 'Urlaubsschaltung', 4);
 
                // Add admin menus
                addAdminMenuSql('holiday', NULL, 'Urlaubsmanagement', 'Hier können Sie Urlaubsschaltungen Ihrer Mitglieder auflisten oder auch wieder aufheben.', 4);