X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Floader%2Fload_cache-them.php;h=a92039fe182aa3186aa097b89d235f5813483024;hp=fde1f1bc54627c016f6ac8aae65d2f7151e5088f;hb=6586600d8020147192e5f28ca2a3a0153f774d3c;hpb=c08df20b10d0771e7f749d7afbe1f76be9f1b028;ds=sidebyside diff --git a/inc/loader/load_cache-them.php b/inc/loader/load_cache-them.php index fde1f1bc54..a92039fe18 100644 --- a/inc/loader/load_cache-them.php +++ b/inc/loader/load_cache-them.php @@ -38,10 +38,10 @@ if (!defined('__SECURITY')) { } // Next cached table is the referal system (themes)... -if (($cacheInstance->cache_file("themes")) && ($cacheInstance->ext_version_matches("theme"))) { +if (($cacheInstance->loadCacheFile("themes")) && ($cacheInstance->extensionVersionMatches("theme"))) { // Load referal system from cache global $cacheArray; - $cache = $cacheInstance->cache_load(); + $cache = $cacheInstance->getArrayFromCache(); // Restructure the array $cacheArray['themes'] = array(); @@ -64,8 +64,8 @@ if (($cacheInstance->cache_file("themes")) && ($cacheInstance->ext_version_match unset($cache); } elseif (($_CONFIG['cache_refsys'] == "Y") && ($CSS != "1") && ($CSS != "-1")) { // Create cache file here - $cacheInstance->cache_init("THEMES"); - $cacheInstance->store_extension_version("theme"); + $cacheInstance->init("THEMES"); + $cacheInstance->storeExtensionVersion("theme"); // Load all themes and their data if (GET_EXT_VERSION("theme") >= "0.0.7") { @@ -75,21 +75,18 @@ if (($cacheInstance->cache_file("themes")) && ($cacheInstance->ext_version_match } while ($data = SQL_FETCHARRAY($result)) { // Add row to cache file - $cacheInstance->add_row($data); + $cacheInstance->addRow($data); } // END - while // Free memory SQL_FREERESULT($result); // Close the cache - $cacheInstance->cache_close(); + $cacheInstance->finalize(); // Reload the cache require(__FILE__); } -// Close file -$cacheInstance->cache_close(); - // ?>