X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fextensions%2Fext-online.php;h=1ed6e70204b891c55cc5a51d5a54b2df2130f945;hb=6fed06f59ba6904726fb2842aeee12bd8ffb352a;hp=b943ac16369ab0227acff424ee3a53375695b121;hpb=6c763653e88b9d10627e651ca59c7201d4b7d62b;p=mailer.git diff --git a/inc/extensions/ext-online.php b/inc/extensions/ext-online.php index b943ac1636..1ed6e70204 100644 --- a/inc/extensions/ext-online.php +++ b/inc/extensions/ext-online.php @@ -38,13 +38,13 @@ if (!defined('__SECURITY')) { } // Version number -$EXT_VERSION = "0.0.4"; +$EXT_VERSION = "0.0.5"; // 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"); +$EXT_VER_HISTORY = array("0.0", "0.0.1", "0.0.2", "0.0.3", "0.0.4", "0.0.5"); switch ($EXT_LOAD_MODE) { @@ -74,6 +74,10 @@ case "remove": // Do stuff when removing extension // SQL commands to run $SQLs[] = "DROP TABLE IF EXISTS "._MYSQL_PREFIX."_online"; $SQLs[] = "DELETE LOW_PRIORITY FROM `"._MYSQL_PREFIX."_admin_menu` WHERE what='usr_online' LIMIT 1"; + $SQLs[] = "DELETE LOW_PRIORITY FROM `"._MYSQL_PREFIX."_guest_menu` WHERE action='online' LIMIT 1"; + + // Unregister filter + UNREGISTER_FILTER('init', 'UPDATE_ONLINE_LIST', true, $dry_run); break; case "activate": // Do stuff when admin activates this extension @@ -108,9 +112,22 @@ case "update": // Update an extension // Update notes (these will be set as task text!) $UPDATE_NOTES = "Erstellung der Datenbanktabelle "._MYSQL_PREFIX."_online in diese Erweiterung ausgelagert."; break; + + case "0.0.5": // SQL queries for v0.0.5 + $SQLs[] = "INSERT INTO `"._MYSQL_PREFIX."_guest_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('online',NULL,'Jetzt Online','2','Y','N')"; + + // Register filter + REGISTER_FILTER('init', 'UPDATE_ONLINE_LIST', false, true, $dry_run); + + // Update notes (these will be set as task text!) + $UPDATE_NOTES = "Hinzufügen des Menüpunktes "Jetzt Online" wird nun von dieser Erweiterung erledigt. Filter hinzugefügt."; + break; } break; +case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305. + break; + default: // Do stuff when extension is loaded break; }