Continued a bit:
[mailer.git] / inc / load_cache.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/28/2004 *
4  * ===================                          Last change: 11/28/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load_cache.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Load more cache files                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
12  * -------------------------------------------------------------------- *
13  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2016 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         die();
36 } // END - if
37
38 // Init cache instance and array
39 $GLOBALS['cache_instance'] = NULL;
40
41 // Init cache first
42 initCacheInstance();
43
44 // Init variables
45 initExtensionCssFiles();
46
47 // Initialize array for "always keep active extensions"
48 $GLOBALS['cache_array']['always_active'] = array();
49
50 // Init & set the INC_POOL
51 initIncludePool('cache');
52 setIncludePool('cache', getArrayFromDirectory('inc/loader/', 'load-'));
53
54 // Pre-load filter cacher
55 loadIncludeOnce('inc/loader/load-filter.php');
56
57 // Pre-load extensions cacher
58 loadIncludeOnce('inc/loader/load-extension.php');
59
60 // Load all includes
61 loadIncludePool('cache');
62
63 // Init filter system
64 initFilterSystem();
65
66 // Init session
67 initSession();
68
69 // Init system here
70 runFilterChain('init');
71
72 // Run post-initialization (e.g. determining username)
73 runFilterChain('post_init');
74
75 // [EOF]
76 ?>