Fixes for installation phase
[mailer.git] / inc / load_cache.php
index 37449da66528cf8d30330f8420f8d12955a29bad..92db387cdb4a936b2f3f39eee005f590e8382678 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
+ * Needs to be in all Files and every File needs "svn propset           *
+ * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if (!defined('__SECURITY')) {
+       die();
+} // END - if
+
+// Init cache instance and array
+$GLOBALS['cache_instance'] = null;
+
+// Init cache first
+initCacheInstance();
+
+// Init variables
+initExtensionCssFiles();
 
-// Load admin cache
-require_once(PATH."inc/load_cache-admin.php");
+// Initialize array for "always keep active extensions"
+$GLOBALS['cache_array']['active_extensions'] = array();
 
-// Load mod_reg cache
-require_once(PATH."inc/load_cache-modreg.php");
+// Init & set the INC_POOL
+initIncludePool('cache');
+setIncludePool('cache', getArrayFromDirectory('inc/loader/', 'load_cache-'));
 
-// Load config cache
-require_once(PATH."inc/load_cache-config.php");
+// Pre-load filter cacher
+loadIncludeOnce('inc/loader/load_cache-filter.php');
 
-// Load refsystem cache
-require_once(PATH."inc/load_cache-refsystem.php");
+// Pre-load extensions cacher
+loadIncludeOnce('inc/loader/load_cache-extension.php');
 
-// Load refdepths cache
-require_once(PATH."inc/load_cache-refdepths.php");
+// Load all includes
+loadIncludePool('cache');
 
-//
+// [EOF]
 ?>