]> git.mxchange.org Git - mailer.git/blob - inc/loader/load-config.php
Heacy rewrite/cleanup:
[mailer.git] / inc / loader / load-config.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/09/2008 *
4  * ===================                          Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load-config.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Load more cache files                            *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } elseif (isInstaller()) {
42         // Do not run in installation phase
43         //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.');
44         return FALSE;
45 }
46
47 // Next cached table is the configuration (config)...
48 if (($GLOBALS['cache_instance']->loadCacheFile('config')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
49         // Load config from cache
50         $config = $GLOBALS['cache_instance']->getArrayFromCache();
51
52         // Swap cache
53         foreach ($config as $entry => $array) {
54                 // All config levels
55                 foreach ($array as $key => $value) {
56                         $GLOBALS['cache_array']['config'][$key][$entry] = $value;
57                 } // END - foreach
58         } // END - foreach
59
60         // Remove dummy array
61         unset($config);
62 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
63         // Create cache file here
64         $GLOBALS['cache_instance']->init();
65
66         // Query for all config entries
67         $result = sqlQuery('SELECT * FROM `{?_MYSQL_PREFIX?}_config` ORDER BY `config` ASC', __FILE__, __LINE__);
68
69         // .. and load them
70         while ($content = sqlFetchArray($result)) {
71                 // Add row to cache file
72                 $GLOBALS['cache_instance']->addRow($content);
73         } // END - while
74
75         // Free memory
76         sqlFreeResult($result);
77
78         // Close the cache
79         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
80         $GLOBALS['cache_instance']->finalize();
81 }
82
83 // [EOF]
84 ?>