]> git.mxchange.org Git - mailer.git/blob - inc/loader/load-modules.php
727844519641170dab8f5918a1a53c8c3308f209
[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://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 }
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                 // Try to remove the cache file
57                 $GLOBALS['cache_instance']->removeCacheFile();
58
59                 // We should fix this
60                 debug_report_bug(__FILE__, __LINE__, 'modArray=<pre>' . print_r($modArray, true) . '</pre>Please try to reload to fix this.');
61         } // END - if
62
63         // Rewrite some parts
64         foreach ($modArray['module'] as $key => $mod) {
65                 // Default without sql_patches
66                 $entries = array('id','title','locked','hidden','admin_only','mem_only');
67
68                 // Is ext-sql_patches newer or equal 0.3.6?
69                 if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
70                         // Add 'has_menu'
71                         $entries[] = 'has_menu';
72                 } // END - if
73
74                 // Add all
75                 foreach ($entries as $entry) {
76                         // Is the entry set?
77                         if (isset($GLOBALS['cache_array']['modules'][$entry][$key])) {
78                                 // Transfer it
79                                 $GLOBALS['cache_array']['modules'][$entry][$mod] = $modArray[$entry][$key];
80
81                                 // And delete cache
82                                 unset($GLOBALS['cache_array']['modules'][$entry][$key]);
83                         } else {
84                                 // Log this for debug purposes
85                                 logDebugMessage(basename(__FILE__), __LINE__, 'Entry not found. module=' . $mod . ',key=' . $key . ',entry=' . $entry);
86                         }
87                 } // END - foreach
88         } // END - foreach
89         unset($modArray);
90 } elseif (isHtmlOutputMode()) {
91         // Create cache file here
92         $GLOBALS['cache_instance']->init();
93
94         // Load all modules and their data
95         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
96                 // Load has_menu
97                 $result = SQL_QUERY('SELECT
98         `id`,`module`,`title`,`locked`,`hidden`,`admin_only`,`title`,`mem_only`,`has_menu`
99 FROM
100         `{?_MYSQL_PREFIX?}_mod_reg`
101 ORDER BY
102         `module` ASC', __FILE__, __LINE__);
103         } else {
104                 // Don't load has_menu
105                 $result = SQL_QUERY('SELECT
106         `id`,`module`,`title`,`locked`,`hidden`,`admin_only`,`title`,`mem_only`
107 FROM
108         `{?_MYSQL_PREFIX?}_mod_reg`
109 ORDER BY
110         `module` ASC', __FILE__, __LINE__);
111         }
112
113         // Cache all data
114         while ($content = SQL_FETCHARRAY($result)) {
115                 // Add row to cache file
116                 $GLOBALS['cache_instance']->addRow($content);
117         } // END - while
118
119         // Free memory
120         SQL_FREERESULT($result);
121
122         // Close the cache
123         $GLOBALS['cache_instance']->storeExtensionVersion('mods');
124         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
125         $GLOBALS['cache_instance']->finalize();
126 }
127
128 // [EOF]
129 ?>