Updated copyright year.
[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  * 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 } elseif (isInstaller()) {
37         // Do not run in installation phase
38         //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.');
39         return FALSE;
40 }
41
42 // Next cached table is the configuration (config)...
43 if (($GLOBALS['cache_instance']->loadCacheFile('config')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
44         // Load config from cache
45         $config = $GLOBALS['cache_instance']->getArrayFromCache();
46
47         // Swap cache
48         foreach ($config as $entry => $array) {
49                 // All config levels
50                 foreach ($array as $key => $value) {
51                         $GLOBALS['cache_array']['config'][$key][$entry] = $value;
52                 } // END - foreach
53         } // END - foreach
54
55         // Remove dummy array
56         unset($config);
57 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
58         // Create cache file here
59         $GLOBALS['cache_instance']->init();
60
61         // Query for all config entries
62         $result = sqlQuery('SELECT * FROM `{?_MYSQL_PREFIX?}_config` ORDER BY `config` ASC', __FILE__, __LINE__);
63
64         // .. and load them
65         while ($content = sqlFetchArray($result)) {
66                 // Add row to cache file
67                 $GLOBALS['cache_instance']->addRow($content);
68         } // END - while
69
70         // Free memory
71         sqlFreeResult($result);
72
73         // Close the cache
74         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
75         $GLOBALS['cache_instance']->finalize();
76 }
77
78 // [EOF]
79 ?>