2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 09/09/2008 *
4 * =================== Last change: 09/09/2008 *
6 * -------------------------------------------------------------------- *
7 * File : load_cache-modules.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Load more cache files *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Mehr Cache-Dateien nachladen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
45 // Use this code if you don't want to run this cache loader on installation phase
46 if (isInstallationPhase()) return;
48 // Next cached table is the module registry (mod_reg)...
49 if (($GLOBALS['cache_instance']->loadCacheFile('modules')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
51 $GLOBALS['cache_array']['modules'] = $GLOBALS['cache_instance']->getArrayFromCache();
53 // Rewrite module cache
54 $modArray = $GLOBALS['cache_array']['modules'];
56 // Do only process valid arrays
57 if (!isset($modArray['module'])) {
58 // We should fix this!
59 debug_report_bug('modArray=<pre>'.print_r($modArray, true).'</pre>');
63 foreach ($modArray['module'] as $key => $mod) {
65 foreach (array('id','title','locked','hidden','admin_only','mem_only','has_menu') as $entry) {
67 if (isset($GLOBALS['cache_array']['modules'][$entry][$key])) {
69 $GLOBALS['cache_array']['modules'][$entry][$mod] = $modArray[$entry][$key];
72 unset($GLOBALS['cache_array']['modules'][$entry][$key]);
74 // Log this for debug purposes
75 logDebugMessage(basename(__FILE__), __LINE__, 'Entry not found. module=' . $mod . ',key=' . $key . ',entry=' . $entry);
80 } elseif (getOutputMode() != 1) {
81 // Create cache file here
82 $GLOBALS['cache_instance']->init();
84 // Load all modules and their data
85 if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
87 $result = SQL_QUERY('SELECT
88 `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`, `has_menu`
90 `{?_MYSQL_PREFIX?}_mod_reg`
92 `module` ASC', __FILE__, __LINE__);
94 // Don't load has_menu
95 $result = SQL_QUERY('SELECT
96 `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`
98 `{?_MYSQL_PREFIX?}_mod_reg`
100 `module` ASC', __FILE__, __LINE__);
104 while ($content = SQL_FETCHARRAY($result)) {
105 // Add row to cache file
106 $GLOBALS['cache_instance']->addRow($content);
110 SQL_FREERESULT($result);
113 $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
114 $GLOBALS['cache_instance']->finalize();