2dda2da8d6db3e83dd2f418cc4974a8aee49b26d
[mailer.git] / inc / loader / load-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-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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.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 } // END - if
42
43 // Use this code if you don't want to run this cache loader on installation phase
44 if (isInstallationPhase()) return;
45
46 // Next cached table is the module registry (mod_reg)...
47 if (($GLOBALS['cache_instance']->loadCacheFile('modules')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
48         // Load cache
49         $GLOBALS['cache_array']['modules'] = $GLOBALS['cache_instance']->getArrayFromCache();
50
51         // Rewrite module cache
52         $modArray = $GLOBALS['cache_array']['modules'];
53
54         // Do only process valid arrays
55         if (!isset($modArray['module'])) {
56                 // We should fix this!
57                 debug_report_bug(__FILE__, __LINE__, 'modArray=<pre>'.print_r($modArray, true).'</pre>');
58         } // END - if
59
60         // Rewrite some parts
61         foreach ($modArray['module'] as $key => $mod) {
62                 // Default without sql_patches
63                 $entries = array('id','title','locked','hidden','admin_only','mem_only');
64
65                 // Is ext-sql_patches newer or equal 0.3.6?
66                 if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
67                         // Add 'has_menu'
68                         $entries[] = 'has_menu';
69                 } // END - if
70
71                 // Add all
72                 foreach ($entries as $entry) {
73                         // Is the entry set?
74                         if (isset($GLOBALS['cache_array']['modules'][$entry][$key])) {
75                                 // Transfer it
76                                 $GLOBALS['cache_array']['modules'][$entry][$mod] = $modArray[$entry][$key];
77
78                                 // And delete cache
79                                 unset($GLOBALS['cache_array']['modules'][$entry][$key]);
80                         } else {
81                                 // Log this for debug purposes
82                                 logDebugMessage(basename(__FILE__), __LINE__, 'Entry not found. module=' . $mod . ',key=' . $key . ',entry=' . $entry);
83                         }
84                 } // END - foreach
85         } // END - foreach
86         unset($modArray);
87 } elseif (isHtmlOutputMode()) {
88         // Create cache file here
89         $GLOBALS['cache_instance']->init();
90
91         // Load all modules and their data
92         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
93                 // Load has_menu
94                 $result = SQL_QUERY('SELECT
95         `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`, `has_menu`
96 FROM
97         `{?_MYSQL_PREFIX?}_mod_reg`
98 ORDER BY
99         `module` ASC', __FILE__, __LINE__);
100         } else {
101                 // Don't load has_menu
102                 $result = SQL_QUERY('SELECT
103         `id`, `module`, `title`, `locked`, `hidden`, `admin_only`, `title`, `mem_only`
104 FROM
105         `{?_MYSQL_PREFIX?}_mod_reg`
106 ORDER BY
107         `module` ASC', __FILE__, __LINE__);
108         }
109
110         // Cache all data
111         while ($content = SQL_FETCHARRAY($result)) {
112                 // Add row to cache file
113                 $GLOBALS['cache_instance']->addRow($content);
114         } // END - while
115
116         // Free memory
117         SQL_FREERESULT($result);
118
119         // Close the cache
120         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
121         $GLOBALS['cache_instance']->finalize();
122 }
123
124 // [EOF]
125 ?>