]> git.mxchange.org Git - mailer.git/blobdiff - inc/extensions/ext-cache.php
More fixes applied from profi-conecpt, cache system rewritten: now all cache files...
[mailer.git] / inc / extensions / ext-cache.php
index 7cda547dcd940cec074e18c1eb663cbf42249885..9bfd6e0459e2252c3699a3d0a926536dc6a3f297 100644 (file)
@@ -39,13 +39,13 @@ if (!defined('__SECURITY')) {
 }
 
 // Version number
-$EXT_VERSION = "0.1.9";
+$EXT_VERSION = "0.2.0";
 
 // 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", "0.0.5", "0.0.6", "0.0.7", "0.0.8", "0.0.9", "0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8", "0.1.9");
+$EXT_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", "0.1.0", "0.1.1", "0.1.2", "0.1.3", "0.1.4", "0.1.5", "0.1.6", "0.1.7", "0.1.8", "0.1.9", "0.2.0");
 
 switch ($EXT_LOAD_MODE)
 {
@@ -92,11 +92,10 @@ case "update": // Update an extension
 
        case "0.0.4": // SQL queries for v0.0.4
                // Update notes (these will be set as task text!)
-               if (EXT_IS_ACTIVE("cache"))
-               {
+               if (EXT_IS_ACTIVE("cache")) {
                        // Check for cache when extension is already installed
                        if ($cacheInstance->cache_file("extensions", true)) $cacheInstance->cache_destroy();
-               }
+               } // END - if
                $UPDATE_NOTES = "Spalte "keep_active" ist hinzugefügt. Cache wurde reinitialisiert.";
                break;
 
@@ -190,6 +189,14 @@ case "update": // Update an extension
                // Update notes (these will be set as task text!)
                $UPDATE_NOTES = "Administratormenü experimentell gecacht.";
                break;
+
+       case "0.2.0": // SQL queries for v0.2.0
+               // This update depends on sql_patches
+               $EXT_UPDATE_DEPENDS = "sql_patches";
+
+               // Update notes (these will be set as task text!)
+               $UPDATE_NOTES = "Die Erweiterung h&auml;ngt nun von der <strong>sql_patches</strong> ab.";
+               break;
        }
        break;