Wrapper function isBegRallyeEnabled() introduced, rewrites to make usage of isExtensi...
[mailer.git] / inc / loader / load_cache-modules.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_cache-modules.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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } // END - if
44
45 // Use this code if you don't want to run this cache loader on installation phase
46 if (isInstallationPhase()) return;
47
48 // Next cached table is the module registry (mod_reg)...
49 if (($GLOBALS['cache_instance']->loadCacheFile('modules')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
50         // Load cache
51         $GLOBALS['cache_array']['modules'] = $GLOBALS['cache_instance']->getArrayFromCache();
52
53         // Rewrite module cache
54         $modArray = $GLOBALS['cache_array']['modules'];
55
56         // Do only process valid arrays
57         if (!isset($modArray['module'])) {
58                 // We should fix this!
59                 debug_report_bug(__FILE__, __LINE__, 'modArray=<pre>'.print_r($modArray, true).'</pre>');
60         } // END - if
61
62         // Rewrite some parts
63         foreach ($modArray['module'] as $key => $mod) {
64                 // Default without sql_patches
65                 $entries = array('id','title','locked','hidden','admin_only','mem_only');
66
67                 // Is ext-sql_patches newer or equal 0.3.6?
68                 if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
69                         // Add 'has_menu'
70                         $entries[] = 'has_menu';
71                 } // END - if
72
73                 // Add all
74                 foreach ($entries as $entry) {
75                         // Is the entry set?
76                         if (isset($GLOBALS['cache_array']['modules'][$entry][$key])) {
77                                 // Transfer it
78                                 $GLOBALS['cache_array']['modules'][$entry][$mod] = $modArray[$entry][$key];
79
80                                 // And delete cache
81                                 unset($GLOBALS['cache_array']['modules'][$entry][$key]);
82                         } else {
83                                 // Log this for debug purposes
84                                 logDebugMessage(basename(__FILE__), __LINE__, 'Entry not found. module=' . $mod . ',key=' . $key . ',entry=' . $entry);
85                         }
86                 } // END - foreach
87         } // END - foreach
88         unset($modArray);
89 } elseif (getScriptOutputMode() != 1) {
90         // Create cache file here
91         $GLOBALS['cache_instance']->init();
92
93         // Load all modules and their data
94         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
95                 // Load has_menu
96                 $result = SQL_QUERY('SELECT
97         `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`, `has_menu`
98 FROM
99         `{?_MYSQL_PREFIX?}_mod_reg`
100 ORDER BY
101         `module` ASC', __FILE__, __LINE__);
102         } else {
103                 // Don't load has_menu
104                 $result = SQL_QUERY('SELECT
105         `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`
106 FROM
107         `{?_MYSQL_PREFIX?}_mod_reg`
108 ORDER BY
109         `module` ASC', __FILE__, __LINE__);
110         }
111
112         // Cache all data
113         while ($content = SQL_FETCHARRAY($result)) {
114                 // Add row to cache file
115                 $GLOBALS['cache_instance']->addRow($content);
116         } // END - while
117
118         // Free memory
119         SQL_FREERESULT($result);
120
121         // Close the cache
122         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
123         $GLOBALS['cache_instance']->finalize();
124 }
125
126 // [EOF]
127 ?>