X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fextensions%2Fext-profile.php;h=befdac57d16836aff4c07dc2eb2b5c35ccefcb88;hb=4b0380051488bb228d151a36e059f257e2a50a69;hp=8edcb43f20c6fcad769f05a4230b2ab1af29c96c;hpb=1dd584090ba559372adb525fba74f46262c7308c;p=mailer.git diff --git a/inc/extensions/ext-profile.php b/inc/extensions/ext-profile.php index 8edcb43f20..befdac57d1 100644 --- a/inc/extensions/ext-profile.php +++ b/inc/extensions/ext-profile.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,102 +38,100 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; - require($INC); + die(); } // Version number -EXT_SET_VERSION('0.0.9'); +setThisExtensionVersion('0.0.9'); // Version history array (add more with , '0.1.0' 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')); +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')); -switch ($EXT_LOAD_MODE) +switch (getExtensionMode()) { case 'register': // Do stuff when installation is running (modules.php?module=admin is called) // SQL commands to run - ADD_EXT_SQL(''); + addExtensionSql(''); break; case 'remove': // Do stuff when removing extension // SQL commands to run - ADD_EXT_SQL(''); + addExtensionSql(''); break; case 'activate': // Do stuff when admin activates this extension // SQL commands to run - ADD_EXT_SQL(''); + addExtensionSql(''); break; case 'deactivate': // Do stuff when admin deactivates this extension // SQL commands to run - ADD_EXT_SQL(''); + addExtensionSql(''); break; case 'update': // Update an extension - switch ($EXT_VER) + switch (getCurrentExtensionVersion()) { case '0.0.1': // SQL queries for v0.0.1 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Benachrichtungsmails werden nur beim tägichen Reset ausgesendet"); + setExtensionUpdateNotes("Benachrichtungsmails werden nur beim tägichen Reset ausgesendet"); break; case '0.0.2': // SQL queries for v0.0.2 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist."); + setExtensionUpdateNotes("Fehler beseitigt, wenn error_reporting=E_ALL gesetzt ist."); break; case '0.0.3': // SQL queries for v0.0.3 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("5 Nachkommastellen implementiert"); + setExtensionUpdateNotes("5 Nachkommastellen implementiert"); break; case '0.0.4': // SQL queries for v0.0.4 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Dummy-Release im Intranet??? Hmmm..."); + setExtensionUpdateNotes("Dummy-Release im Intranet??? Hmmm..."); break; case '0.0.5': // SQL queries for v0.0.5 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Profilaktualisierungsmails werden nur dann ausgesendet, wenn profile_update und prof_reupdate > 0 sind."); + setExtensionUpdateNotes("Profilaktualisierungsmails werden nur dann ausgesendet, wenn profile_update und prof_reupdate > 0 sind."); break; case '0.0.6': // SQL queries for v0.0.6 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Datumsformat festgelegt auf ausführlich."); + setExtensionUpdateNotes("Datumsformat festgelegt auf ausführlich."); break; case '0.0.7': // SQL queries for v0.0.7 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Wörter Mailtausch, Mailtausches und Mailtauscher sind austauschbar."); + setExtensionUpdateNotes("Wörter Mailtausch, Mailtausches und Mailtauscher sind austauschbar."); break; case '0.0.8': // SQL queries for v0.0.8 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("Namenskonflikt gelösst mit Erweiterung update (kommt noch raus!)"); + setExtensionUpdateNotes("Namenskonflikt gelösst mit Erweiterung update (kommt noch raus!)"); break; case '0.0.9': // SQL queries for v0.0.9 // Update notes (these will be set as task text!) - EXT_SET_UPDATE_NOTES("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert."); + setExtensionUpdateNotes("HTML-Code ausgelagert in Templates und SQL-Anweisungen abgesichert."); break; } break; - case 'modify': // When the extension got modified - break; + case 'modify': // When the extension got modified + break; - case 'test': // For testing purposes. For details see file inc/modules/admin/what-extensions.php, arround line 305. - 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 - // Do we have a daily-reset-run? - if (isResetModeEnabled() && (!isDebugModeEnabled()) && ($GLOBALS['output_mode'] != 1)) { - // So let's check for profiles which needs an update - ADD_INC_TO_POOL(sprintf("%sinc/profile-updte.php", constant('PATH'))); - } - break; + case 'init': // Do stuff when extension is initialized + break; + + default: // Unknown extension mode + DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown extension mode %s detected.", getExtensionMode())); + break; } -// +// [EOF] ?>