X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fextensions%2Fext-online.php;h=3b91b79f3db3cb3cdb229c4dba9f754bd63aad4a;hb=675778ff98b75b6c5071e2709c2d6b0af86cf79d;hp=b08ea40e9469bf5979cf174b9dc1c5dc1e12cdbb;hpb=82d53dfb7f59fa1e37bd500e3db3d10a9d4a78da;p=mailer.git diff --git a/inc/extensions/ext-online.php b/inc/extensions/ext-online.php index b08ea40e94..3b91b79f3d 100644 --- a/inc/extensions/ext-online.php +++ b/inc/extensions/ext-online.php @@ -1,7 +1,7 @@ Unknown column 'visibled' in 'field list' behoben."; +setThisExtensionVersion('0.0.5'); + +// 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')); + +switch (getExtensionMode()) { + case 'register': // Do stuff when installation is running (modules.php?module=admin is called) + // SQL commands to run + addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_online`'); + addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_online` ( +`id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, +`sid` VARCHAR(32) NOT NULL DEFAULT '', +`ip` VARCHAR(15) NOT NULL DEFAULT '', +`userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, +`refid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0, +`module` VARCHAR(255) NOT NULL DEFAULT '', +`action` VARCHAR(255) NOT NULL DEFAULT '', +`what` VARCHAR(255) NOT NULL DEFAULT '', +`is_admin` ENUM('Y','N') NOT NULL DEFAULT 'N', +`is_member` ENUM('Y','N') NOT NULL DEFAULT 'N', +`timestamp` VARCHAR(10) NOT NULL DEFAULT 0, +PRIMARY KEY (`id`), +INDEX (`userid`), +INDEX (`refid`), +INDEX `admin_member` (`is_admin`, `is_member`) +) TYPE={?_TABLE_TYPE?}"); + addAdminMenuSql('misc','usr_online','Online-Statistik','Eine Liste von derzeit "Online" Usern. Doppelte Einträge könnte auf mangelnden Cookie-Support des Browsers oder auf einen Spider hindeuten.', 1); + break; + + case 'remove': // Do stuff when removing extension + // SQL commands to run + addExtensionSql('DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_online`'); + addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='usr_online'"); + addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `action`='online'"); + + // Unregister filter + unregisterFilter(__FUNCTION__, __LINE__, 'init', 'UPDATE_ONLINE_LIST', true, isExtensionDryRun()); + break; + + case 'activate': // Do stuff when admin activates this extension + // SQL commands to run + addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='Y', `locked`='N' WHERE `action`='online' LIMIT 1"); + break; + + case 'deactivate': // Do stuff when admin deactivates this extension + // SQL commands to run + addExtensionSql("UPDATE `{?_MYSQL_PREFIX?}_guest_menu` SET `visible`='N', `locked`='Y' WHERE `action`='online' LIMIT 1"); break; - case "0.0.2": // SQL queries for v0.0.2 - // Update notes (these will be set as task text!) - $UPDATE_NOTES = "Seit Patch 340 überflüssige HTML-Tags entfernt."; + case 'update': // Update an extension + switch (getCurrentExtensionVersion()) { + case '0.0.1': // SQL queries for v0.0.1 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Fehler Unknown column 'visibled' in 'field list' behoben."); + break; + + case '0.0.2': // SQL queries for v0.0.2 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Seit Patch 340 überflüssige HTML-Tags entfernt."); + break; + + case '0.0.3': // SQL queries for v0.0.3 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert."); + break; + + case '0.0.4': // SQL queries for v0.0.4 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Erstellung der Datenbanktabelle `{?_MYSQL_PREFIX?}_online` in diese Erweiterung ausgelagert."); + break; + + case '0.0.5': // SQL queries for v0.0.5 + // Add guest menu + addGuestMenuSql('online', NULL, 'Jetzt Online', 'Y', 'N', 2); + + // Register filter + registerFilter('init', 'UPDATE_ONLINE_LIST', false, true, isExtensionDryRun()); + + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Hinzufügen des Menüpunktes "Jetzt Online" wird nun von dieser Erweiterung erledigt. Filter hinzugefügt."); + break; + } // END - switch break; - case "0.0.3": // SQL queries for v0.0.3 - // Update notes (these will be set as task text!) - $UPDATE_NOTES = "HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert."; + case 'modify': // When the extension got modified break; - case "0.0.4": // SQL queries for v0.0.4 - // Update notes (these will be set as task text!) - $UPDATE_NOTES = "Erstellung der Datenbanktabelle "._MYSQL_PREFIX."_online in diese Erweiterung ausgelagert."; + case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305. break; - } - break; -default: // Do stuff when extension is loaded - break; -} -// Language file prefix -$EXT_LANG_PREFIX = "online"; + case 'init': // Do stuff when extension is initialized + break; -// Extension is always active? -$EXT_ALWAYS_ACTIVE = "N"; + default: // Unknown extension mode + logDebugMessage(__FILE__, __LINE__, sprintf("Unknown extension mode %s in extension %s detected.", getExtensionMode(), getCurrentExtensionName())); + break; +} // END - switch -// +// [EOF] ?>