]> git.mxchange.org Git - mailer.git/blobdiff - inc/load_cache.php
Several rewrites/renames, fixes for installation. Resolves #104
[mailer.git] / inc / load_cache.php
index 37449da66528cf8d30330f8420f8d12955a29bad..1a602766278e974360ffe70fbea6ef8dc604e785 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
+if (!defined('__SECURITY')) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
 
-// Load admin cache
-require_once(PATH."inc/load_cache-admin.php");
+// Load more cache includes
+$INC_POOL = GET_DIR_AS_ARRAY("inc/loader/", "load_cache-");
 
-// Load mod_reg cache
-require_once(PATH."inc/load_cache-modreg.php");
-
-// Load config cache
-require_once(PATH."inc/load_cache-config.php");
-
-// Load refsystem cache
-require_once(PATH."inc/load_cache-refsystem.php");
-
-// Load refdepths cache
-require_once(PATH."inc/load_cache-refdepths.php");
+// Run the filter
+runFilterChain('load_includes', $INC_POOL);
 
 //
 ?>