X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fload_extensions.php;h=256cb97daa0fb13f0599d8d149854c8ba2a39740;hp=1f443670ac371dc20d0f1cc994a5c5efbeb55479;hb=6586600d8020147192e5f28ca2a3a0153f774d3c;hpb=c08df20b10d0771e7f749d7afbe1f76be9f1b028 diff --git a/inc/load_extensions.php b/inc/load_extensions.php index 1f443670ac..256cb97daa 100644 --- a/inc/load_extensions.php +++ b/inc/load_extensions.php @@ -68,7 +68,7 @@ if (EXT_IS_ACTIVE("cache")) { include_once(PATH."inc/extensions/ext-cache.php"); // Check extension cache - switch (($cacheInstance->cache_file("extensions", true)) && ($cacheInstance->ext_version_matches("sql_patches"))) { + switch (($cacheInstance->loadCacheFile("extensions", true)) && ($cacheInstance->extensionVersionMatches("sql_patches"))) { case true : $cacheMode = "load"; break; case false: $cacheMode = "init"; break; } @@ -76,8 +76,8 @@ if (EXT_IS_ACTIVE("cache")) { // Do we need to init the cache? if (($cacheMode == "init") && ($_CONFIG['cache_exts'] == "Y")) { // Init cache file - $cacheInstance->cache_init("EXTENSIONS"); - $cacheInstance->store_extension_version("sql_patches"); + $cacheInstance->init("EXTENSIONS"); + $cacheInstance->storeExtensionVersion("sql_patches"); } elseif ($_CONFIG['cache_exts'] == "N") { // Cache will not be created for extensions $cacheMode = "skip"; @@ -90,15 +90,15 @@ if ($cacheMode == "load") { $EXT_POOL = array(); // Re-initialize handler - $cacheInstance->cache_file("extensions", true); + $cacheInstance->loadCacheFile("extensions", true); // Load extension data from cache file - $EXT_DUMMY = $cacheInstance->cache_load(); + $EXT_DUMMY = $cacheInstance->getArrayFromCache(); // Is the cache file fine? if (!isset($EXT_DUMMY['ext_name'])) { // Cache file is damaged so kill it - $cacheInstance->cache_destroy(); + $cacheInstance->destroyCacheFile(); // Skip any further execution return; @@ -166,9 +166,6 @@ if ($cacheMode == "load") { $EXT_DUMMY['ext_name'] = $EXT_NAMES; unset($EXT_NAMES); - // Close cache file - $cacheInstance->cache_close(); - // Loading cache is done so let's free some memory! unset($EXT_DUMMY['ext_lang']); unset($EXT_DUMMY['ext_keep']); @@ -198,12 +195,12 @@ if ($cacheMode == "load") { if (GET_EXT_VERSION("sql_patches") >= "0.0.6") { // Query with CSS file from DB - $res_ext_crt = SQL_QUERY("SELECT id, ext_name, ext_lang_file, ext_has_css, ext_active, ext_version + $res_ext_crt = SQL_QUERY("SELECT id AS ext_id, ext_name, ext_lang_file AS ext_lang, ext_has_css AS ext_css, ext_active, ext_version FROM "._MYSQL_PREFIX."_extensions".$ADD." ORDER BY ext_name", __FILE__, __LINE__); } else { // Old obsolete query string - $res_ext_crt = SQL_QUERY("SELECT id, ext_name, ext_lang_file, ext_name, ext_active, ext_version + $res_ext_crt = SQL_QUERY("SELECT id AS ext_id, ext_name, ext_lang_file AS ext_lang, ext_name, ext_active, ext_version FROM "._MYSQL_PREFIX."_extensions".$ADD." ORDER BY ext_name", __FILE__, __LINE__); } @@ -218,93 +215,95 @@ if ((SQL_NUMROWS($res_ext_crt) > 0) && ((($cacheMode == "init") && ($CSS != "1") require_once(PATH."inc/theme-manager.php"); // Extensions are registered so we load them - while (list($EXT_ID, $name, $lang, $css, $active, $version) = SQL_FETCHROW($res_ext_crt)) { + while ($content = SQL_FETCHARRAY($res_ext_crt)) { // Get menu entry - $menu = "N"; - if (MODULE_HAS_MENU($name, true)) { - $menu = "Y"; + $content['ext_menu'] = "N"; + if (MODULE_HAS_MENU($content['ext_name'], true)) { + $content['ext_menu'] = "Y"; } // END - if // Load extensions - $file1 = sprintf("%sinc/extensions/ext-%s.php", PATH, $name); + $file1 = sprintf("%sinc/extensions/ext-%s.php", PATH, $content['ext_name']); $file2 = $file1; $EXT_CSS = "N"; $EXT_ALWAYS_ACTIVE = "N"; // Special functions file - $file3 = sprintf("%sinc/libs/%s_functions.php", PATH, $name); + $file3 = sprintf("%sinc/libs/%s_functions.php", PATH, $content['ext_name']); // Does the extension file exists? if (FILE_READABLE($file1)) { // If there's no language file specified we don't need to load one... ;-) - if (!empty($lang)) { + if (!empty($content['ext_lang'])) { // Create language file - $file2 = sprintf("%sinc/language/%s_%s.php", PATH, $lang, GET_LANGUAGE()); + $file2 = sprintf("%sinc/language/%s_%s.php", PATH, $content['ext_lang'], GET_LANGUAGE()); } // END - if if (FILE_READABLE($file3)) { // Special functions file - $funcs = "Y"; + $content['ext_funcs'] = "Y"; require_once($file3); } else { // Don't load functions file - $funcs = "N"; + $content['ext_funcs'] = "N"; } // Do we need a language file? if (($file1 != $file2) && (FILE_READABLE($file2))) { // Load language file - $lang = "Y"; + $content['ext_lang'] = "Y"; include($file2); } else { // Don't load language file - $lang = "N"; + $content['ext_lang'] = "N"; } + // By default no extension is always active, except sql_patches + $EXT_ALWAYS_ACTIVE = "N"; + // Load extension - if ($name != "sql_patches") { + if ($content['ext_name'] != "sql_patches") { // Load extension's file include_once($file1); } else { - // KEEP sql_patches ALWAYS ACTIVE! + // Keep sql_patches always active $EXT_ALWAYS_ACTIVE = "Y"; } - if ($css == "Y") { - $CSS_FILE = sprintf("%stheme/%s/css/%s.css", PATH, GET_CURR_THEME(), $name); + // Transfer EXT_ALWAYS_ACTIVE flag + $content['ext_keep'] = $EXT_ALWAYS_ACTIVE; + + // CSS file handling: + if ((!isset($content['ext_css'])) || ($content['ext_css'] == "Y")) { + // Create FQFN for the CSS file + $CSS_FILE = sprintf("%stheme/%s/css/%s.css", PATH, GET_CURR_THEME(), $content['ext_name']); + + // Is the file there? if (FILE_READABLE($CSS_FILE)) { // CSS file for extension was found (use only relative path for now!) - $EXT_CSS_FILES[] = $name.".css"; + $EXT_CSS_FILES[] = $content['ext_name'].".css"; + $content['ext_css'] = "Y"; } else { // Don't load CSS file - $css = "N"; + $content['ext_css'] = "N"; } } // END - if - // Add cache row + // Shall we cache? if ($cacheMode == "init") { - $cacheInstance->add_row(array( - 'ext_id' => $EXT_ID, - 'ext_name' => $name, - 'ext_lang' => $lang, - 'ext_css' => $css, - 'ext_menu' => $menu, - 'ext_funcs' => $funcs, - 'ext_active' => $active, - 'ext_version' => $version, - 'ext_keep' => $EXT_ALWAYS_ACTIVE, - )); + // Add cache row + $cacheInstance->addRow($content); } elseif ($cacheMode == "no") { // Remember this value for later usage - $cacheArray['active_extensions'][$name] = $EXT_ALWAYS_ACTIVE; + $cacheArray['active_extensions'][$content['ext_name']] = $EXT_ALWAYS_ACTIVE; } } elseif (!FILE_READABLE($file1)) { // Deleted extension file so we mark it for removal from DB - $DEL[] = $name; + $DEL[] = $content['ext_name']; } } // END - while if ($cacheMode == "init") { // Close cache file - $cacheInstance->cache_close(); + $cacheInstance->finalize(); // Load more cache files (like admins) require_once(PATH."inc/load_cache.php"); @@ -327,14 +326,14 @@ if (!empty($INC_POOL[0])) { // Uninstall extensions that are no longer in our system if (!empty($DEL[0])) { // Remove extensions from two tables: extension registry and tasks table - foreach ($DEL as $name) { + foreach ($DEL as $del_ext) { // First remove entry from extensions table SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_extensions WHERE ext_name='%s' LIMIT 1", - array($name), __FILE__, __LINE__); + array($del_ext), __FILE__, __LINE__); // Remove (maybe?) found tasks (main task and possible updates SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_task_system WHERE subject LIKE '[%s:]%%' AND (task_type='EXTENSION' OR task_type='EXTENSION_UPDATE')", - array($name), __FILE__, __LINE__); + array($del_ext), __FILE__, __LINE__); } // END - foreach // I think it's not neccessary to run the optimization function here