X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fextensions%2Fext-network.php;h=7032e51e57dc024b321ef209edabb800a91a0f55;hb=fad1ea280c27f9ba8ae818b87b0ba29d2c113b1b;hp=67d04e4787ae90263c268fac40c856c7f8389311;hpb=39172de4ecec2f6ddc597a5ae439e7aef79c75ed;p=mailer.git diff --git a/inc/extensions/ext-network.php b/inc/extensions/ext-network.php index 67d04e4787..7032e51e57 100644 --- a/inc/extensions/ext-network.php +++ b/inc/extensions/ext-network.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Allgemeine Sponsornetzwerk Erweiterung * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * 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 * * For more information visit: http://www.mxchange.org * @@ -38,13 +43,10 @@ if (!defined('__SECURITY')) { } // Version number -$EXT_VERSION = "0.0"; - -// Auto-set extension version -if (empty($EXT_VER)) $EXT_VER = $EXT_VERSION; +EXT_SET_VERSION("0.0"); // Version history array (add more with , "0.1" and so on) -$EXT_VER_HISTORY = array("0.0"); +EXT_SET_VER_HISTORY(array("0.0")); switch ($EXT_LOAD_MODE) { @@ -68,14 +70,17 @@ case "update": // Update an extension switch ($EXT_VER) { case "0.0.1": // SQL queries for v0.0.1 - $SQLs[] = ""; + ADD_EXT_SQL(""); // Update notes (these will be set as task text!) - $UPDATE_NOTES = ""; + EXT_SET_UPDATE_NOTES(""); break; } 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;