X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fextensions%2Fext-mediadata.php;h=c66d91cf389d9d29f7fb6492f8c322ed51d98a7a;hp=10f60565a470e1e061a0dd065b5bcd0e7542aa74;hb=d92d8b4ddd219b65df8e0bba5e4354c0bbfba5c9;hpb=f26aab4a55972825a0d3ef9346c8c8dea8752b7b diff --git a/inc/extensions/ext-mediadata.php b/inc/extensions/ext-mediadata.php index 10f60565a4..c66d91cf38 100644 --- a/inc/extensions/ext-mediadata.php +++ b/inc/extensions/ext-mediadata.php @@ -17,7 +17,7 @@ * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -38,124 +38,129 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} + die(); +} // END - if // Version number -EXT_SET_VERSION("0.0.9"); - -// Version history array (add more with , "0.1" and so on) -EXT_SET_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")); - -switch ($EXT_LOAD_MODE) -{ -case "register": // Do stuff when installation is running (modules.php?module=admin&action=login is called) - // SQL commands to run - ADD_EXT_SQL(""); - break; - -case "remove": // Do stuff when removing extension - // SQL commands to run - ADD_EXT_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_mediadata`"); - ADD_EXT_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_admin_menu` WHERE `what`='config_mediadata'"); - ADD_EXT_SQL("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_guest_menu` WHERE `what`='mediadata'"); - break; - -case "activate": // Do stuff when admin activates this extension - // SQL commands to run - ADD_EXT_SQL(""); - break; - -case "deactivate": // Do stuff when admin deactivates this extension - // SQL commands to run - ADD_EXT_SQL(""); - break; - -case "update": // Update an extension - switch ($EXT_VER) - { - case "0.0.1": // SQL queries for v0.0.1 - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Berechnung der Gesamt-{!POINTS!} korregiert."); - break; +setThisExtensionVersion('0.0.9'); - case "0.0.2": // SQL queries for v0.0.2 - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Daten des Scriptes mit eingebunden."); - break; +// 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')); - case "0.0.3": // SQL queries for v0.0.3 - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Sicherheitsupdate: SQL-Anweisungen geschützt."); - break; +// Keep this extension always active! +setExtensionAlwaysActive('Y'); - case "0.0.4": // SQL queries for v0.0.4 +switch (getExtensionMode()) { + case 'register': // Do stuff when installation is running (modules.php?module=admin is called) // SQL commands to run - ADD_EXT_SQL("DROP TABLE IF EXISTS `{!_MYSQL_PREFIX!}_mediadata`"); - ADD_EXT_SQL("CREATE TABLE `{!_MYSQL_PREFIX!}_mediadata` ( -media_key VARCHAR(255) NOT NULL DEFAULT '', -media_value VARCHAR(255) NOT NULL DEFAULT '', -PRIMARY KEY(media_key) -) TYPE={!_TABLE_TYPE!}"); - - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Teile der Mediendaten werden in seperater Tabelle gesichert. Bitte beachten Sie, dass dieses Update nur Daten des aktuellen Zustandes berücksichtigen kann und nicht bereits gelöschter Mitglieder."); - break; - - case "0.0.5": // SQL queries for v0.0.5 - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("if-Anweisungen auf Funktion empty() umgestellt."); - break; + addExtensionSql(''); - case "0.0.6": // SQL queries for v0.0.6 - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Mediendaten mussten komplett regeneriert werden."); + // Add the filters + registerFilter('add_points', 'UPDATE_MEDIADATA_ENTRY', false, true, getExtensionDryRun()); + registerFilter('sub_points', 'UPDATE_MEDIADATA_ENTRY', false, true, getExtensionDryRun()); break; - case "0.0.7": // SQL queries for v0.0.7 - ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD mt_start BIGINT(20) UNSIGNED NOT NULL DEFAULT 0"); - ADD_EXT_SQL("ALTER TABLE `{!_MYSQL_PREFIX!}_config` ADD mt_stage BIGINT(20) UNSIGNED NOT NULL DEFAULT '500'"); - ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_admin_menu` (`action`,`what`,`title`,`descr`,`sort`) VALUES ('setup','config_mediadata','Mediendaten','Stellen Sie allgemeine Einstellungen zu den Mediendaten ein.', 10)"); + case 'remove': // Do stuff when removing extension + // SQL commands to run + addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_mediadata`"); + addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_admin_menu` WHERE `what`='config_mediadata'"); + addExtensionSql("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_guest_menu` WHERE `what`='mediadata'"); - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Start des {!MT_WORD2!} und Anzahl Anmeldungen aufgenommen. (Task #13)
-Bitte stellen Sie diesen derzeit manuell unter Einstellungen-Medidata selber einstellen."); + // Remove the filters + unregisterFilter('add_points', 'UPDATE_MEDIADATA_ENTRY', false, true, getExtensionDryRun()); + unregisterFilter('sub_points', 'UPDATE_MEDIADATA_ENTRY', false, true, getExtensionDryRun()); break; - case "0.0.8": // SQL queries for v0.0.8 - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Fehlerhinweis bei deaktivierter Erweiterung verbessert."); + case 'activate': // Do stuff when admin activates this extension + // SQL commands to run + addExtensionSql(''); break; - case "0.0.9": // SQL queries for v0.0.9 - ADD_EXT_SQL("INSERT INTO `{!_MYSQL_PREFIX!}_guest_menu` (`action`,`what`,`title`,`sort`,`visible`,`locked`) VALUES ('main','mediadata','Mediendaten',3,'Y','N')"); - - // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Menüpunkt wird durch diese Erweiterung generiert."); + case 'deactivate': // Do stuff when admin deactivates this extension + // SQL commands to run + addExtensionSql(''); break; - } - break; -case "modify": // When the extension got modified - break; + 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("Berechnung der Gesamt-{?POINTS?} korregiert."); + break; + + case '0.0.2': // SQL queries for v0.0.2 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Daten des Scriptes mit eingebunden."); + break; + + case '0.0.3': // SQL queries for v0.0.3 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Sicherheitsupdate: SQL-Anweisungen geschützt."); + break; + + case '0.0.4': // SQL queries for v0.0.4 + // SQL commands to run + addExtensionSql("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_mediadata`"); + addExtensionSql("CREATE TABLE `{?_MYSQL_PREFIX?}_mediadata` ( +`media_key` VARCHAR(255) NOT NULL DEFAULT '', +`media_value` VARCHAR(255) NOT NULL DEFAULT '', +PRIMARY KEY (media_key) +) TYPE={?_TABLE_TYPE?}"); + + // Add auto-check file + addIncludeToPool('extension', 'inc/gen_mediadata.php'); + + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Teile der Mediendaten werden in seperater Tabelle gesichert. Bitte beachten Sie, dass dieses Update nur Daten des aktuellen Zustandes berücksichtigen kann und nicht bereits gelöschter Mitglieder."); + break; + + case '0.0.5': // SQL queries for v0.0.5 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("if-Anweisungen auf Funktion empty() umgestellt."); + break; + + case '0.0.6': // SQL queries for v0.0.6 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Mediendaten mussten komplett regeneriert werden."); + break; + + case '0.0.7': // SQL queries for v0.0.7 + addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `mt_start` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0"); + addExtensionSql("ALTER TABLE `{?_MYSQL_PREFIX?}_config` ADD `mt_stage` BIGINT(20) UNSIGNED NOT NULL DEFAULT '500'"); + addAdminMenuSql('setup','config_mediadata','Mediendaten','Stellen Sie allgemeine Einstellungen zu den Mediendaten ein.', 10); + + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Start des {?mt_word2?} und Anzahl Anmeldungen aufgenommen. (Task #13)
+Bitte stellen Sie diesen derzeit manuell unter Einstellungen-Medidata selber einstellen."); + break; + + case '0.0.8': // SQL queries for v0.0.8 + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Fehlerhinweis bei deaktivierter Erweiterung verbessert."); + break; + + case '0.0.9': // SQL queries for v0.0.9 + addGuestMenuSql('main','mediadata','Mediendaten','N','N',3); + + // Update notes (these will be set as task text!) + setExtensionUpdateNotes("Menüpunkt wird durch diese Erweiterung generiert."); + break; + } // END - switch + break; -case "test": // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305. - break; + case 'modify': // When the extension got modified + break; -default: // Do stuff when extension is loaded - break; -} + case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305. + break; -if ((isset($dry_run)) && (isset($EXT_LOAD_MODE))) { - if ((!$dry_run) && ($EXT_LOAD_MODE == "update") && ($EXT_VER == "0.0.4")) { - // Add auto-check file - ADD_INC_TO_POOL(sprintf("%sinc/gen_mediadata.php", constant('PATH'))); - } // END - if -} // END - if + case 'init': // Do stuff when extension is initialized + break; -// Keep this extension always active! -EXT_SET_ALWAYS_ACTIVE("Y"); + default: // Unknown extension mode + DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode())); + break; +} // END - switch -// +// [EOF] ?>