Updated copyright year.
[mailer.git] / inc / loader / load-themes.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/15/2008 *
4  * ===================                          Last change: 09/15/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : load-themes.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 } elseif (!isExtensionActive('theme')) {
41         // Skip this loader
42         return FALSE;
43 }
44
45 // Next cached table are the themes
46 if (($GLOBALS['cache_instance']->loadCacheFile('themes')) && ($GLOBALS['cache_instance']->extensionVersionMatches('theme'))) {
47         // Load themes
48         $cache = $GLOBALS['cache_instance']->getArrayFromCache();
49
50         // Restructure the array
51         $GLOBALS['cache_array']['themes'] = array();
52         foreach ($cache as $key => $content) {
53                 // Skip 'theme_path' because we don't need to rebuild it
54                 if ($key == 'theme_path') {
55                         // Add entries with id
56                         foreach ($content as $id => $entry) {
57                                 $GLOBALS['cache_array']['themes']['theme_path'][$cache['id'][$id]] = $entry;
58                         } // END - foreach
59                 } else {
60                         // Add all themes with theme name as array index
61                         foreach ($content as $id => $entry) {
62                                 $GLOBALS['cache_array']['themes'][$key][$cache['theme_path'][$id]] = $entry;
63                         } // END - foreach
64                 }
65         } // END - foreach
66
67         // Remove dummy array
68         unset($cache);
69 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
70         // Create cache file here
71         $GLOBALS['cache_instance']->init();
72
73         // Load all themes and their data
74         if (isExtensionInstalledAndNewer('theme', '0.0.7')) {
75                 $result = sqlQuery('SELECT `id`, `theme_path`, `theme_active`, `theme_ver`, `theme_name` FROM `{?_MYSQL_PREFIX?}_themes` ORDER BY `id` ASC', __FILE__, __LINE__);
76         } else {
77                 $result = sqlQuery('SELECT `id`, `theme_path`, `theme_active`, `theme_ver` FROM `{?_MYSQL_PREFIX?}_themes` ORDER BY `id` ASC', __FILE__, __LINE__);
78         }
79         while ($content = sqlFetchArray($result)) {
80                 // Add row to cache file
81                 $GLOBALS['cache_instance']->addRow($content);
82         } // END - while
83
84         // Free memory
85         sqlFreeResult($result);
86
87         // Close the cache
88         $GLOBALS['cache_instance']->storeExtensionVersion('theme');
89         $GLOBALS['cache_instance']->finalize();
90 }
91
92 // [EOF]
93 ?>