Method extensionVersionMatches() is now cached in
[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         foreach ($modArray['module'] as $key => $mod) {
56                 // Add all
57                 foreach (array('id','title','locked','hidden','admin_only','mem_only','has_menu') as $entry) {
58                         // Is the entry set?
59                         if (isset($GLOBALS['cache_array']['modules'][$entry][$key])) {
60                                 // Transfer it
61                                 $GLOBALS['cache_array']['modules'][$entry][$mod] = $modArray[$entry][$key];
62
63                                 // And delete cache
64                                 unset($GLOBALS['cache_array']['modules'][$entry][$key]);
65                         } else {
66                                 // Log this for debug purposes
67                                 logDebugMessage(basename(__FILE__), __LINE__, 'Entry not found. module=' . $mod . ',key=' . $key . ',entry=' . $entry);
68                         }
69                 } // END - foreach
70         } // END - foreach
71         unset($modArray);
72 } elseif (getOutputMode() != 1) {
73         // Create cache file here
74         $GLOBALS['cache_instance']->init();
75
76         // Load all modules and their data
77         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
78                 // Load has_menu
79                 $result = SQL_QUERY('SELECT
80         `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`, `has_menu`
81 FROM
82         `{?_MYSQL_PREFIX?}_mod_reg`
83 ORDER BY
84         `module` ASC', __FILE__, __LINE__);
85         } else {
86                 // Don't load has_menu
87                 $result = SQL_QUERY('SELECT
88         `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`
89 FROM
90         `{?_MYSQL_PREFIX?}_mod_reg`
91 ORDER BY
92         `module` ASC', __FILE__, __LINE__);
93         }
94
95         // Cache all data
96         while ($content = SQL_FETCHARRAY($result)) {
97                 // Add row to cache file
98                 $GLOBALS['cache_instance']->addRow($content);
99         } // END - while
100
101         // Free memory
102         SQL_FREERESULT($result);
103
104         // Close the cache
105         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
106         $GLOBALS['cache_instance']->finalize();
107 }
108
109 // [EOF]
110 ?>