f2322765ca7b7972b088ccb3688bae3b62a0fad5
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 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 (isInstallationPhase()) {
42         // Use this code if you don't want to run this cache loader on installation phase
43         return;
44 } elseif (!isExtensionActive('theme')) {
45         // Skip this loader
46         return false;
47 }
48
49 // Next cached table is the referal system (themes)...
50 if (($GLOBALS['cache_instance']->loadCacheFile('themes')) && ($GLOBALS['cache_instance']->extensionVersionMatches('theme'))) {
51         // Load referal system from cache
52         $cache = $GLOBALS['cache_instance']->getArrayFromCache();
53
54         // Restructure the array
55         $GLOBALS['cache_array']['themes'] = array();
56         foreach ($cache as $key => $content) {
57                 // Skip 'theme_path' because we don't need to rebuild it
58                 if ($key == 'theme_path') {
59                         // Add entries with id
60                         foreach ($content as $id => $entry) {
61                                 $GLOBALS['cache_array']['themes']['theme_path'][$cache['id'][$id]] = $entry;
62                         } // END - foreach
63                 } else {
64                         // Add all themes with theme name as array index
65                         foreach ($content as $id => $entry) {
66                                 $GLOBALS['cache_array']['themes'][$key][$cache['theme_path'][$id]] = $entry;
67                         } // END - foreach
68                 }
69         } // END - foreach
70
71         // Remove dummy array
72         unset($cache);
73 } elseif (isHtmlOutputMode()) {
74         // Create cache file here
75         $GLOBALS['cache_instance']->init();
76
77         // Load all themes and their data
78         if (isExtensionInstalledAndNewer('theme', '0.0.7')) {
79                 $result = SQL_QUERY('SELECT `id`,`theme_path`,`theme_active`,`theme_ver`,`theme_name` FROM `{?_MYSQL_PREFIX?}_themes` ORDER BY `id` ASC', __FILE__, __LINE__);
80         } else {
81                 $result = SQL_QUERY('SELECT `id`,`theme_path`,`theme_active`,`theme_ver` FROM `{?_MYSQL_PREFIX?}_themes` ORDER BY `id` ASC', __FILE__, __LINE__);
82         }
83         while ($content = SQL_FETCHARRAY($result)) {
84                 // Add row to cache file
85                 $GLOBALS['cache_instance']->addRow($content);
86         } // END - while
87
88         // Free memory
89         SQL_FREERESULT($result);
90
91         // Close the cache
92         $GLOBALS['cache_instance']->storeExtensionVersion('theme');
93         $GLOBALS['cache_instance']->finalize();
94 }
95
96 // [EOF]
97 ?>