]> git.mxchange.org Git - mailer.git/blobdiff - inc/load_cache.php
Refback will be payed now (user cannot setup currently)
[mailer.git] / inc / load_cache.php
index 37449da66528cf8d30330f8420f8d12955a29bad..fad1bdde22d6912a7c3740fb78e8984210b66e9b 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(PATH."inc/loader/", "load_cache-");
 
-// Load mod_reg cache
-require_once(PATH."inc/load_cache-modreg.php");
+// Include all
+foreach ($INC_POOL as $fqfn) {
+       // Include the file
+       require_once($fqfn);
+} // END - foreach
 
-// 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");
+// Remove array
+unset($INC_POOL);
 
 //
 ?>