Heacy rewrite/cleanup:
[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 - 2013 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 (isInstaller()) {
42         // Do not run in installation phase
43         //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.');
44         return FALSE;
45 } elseif (!isExtensionInstalled('mods')) {
46         // Do not run if ext-mods is missing
47         return FALSE;
48 }
49
50 // Next cached table is the module registry (mod_reg)...
51 if (($GLOBALS['cache_instance']->loadCacheFile('modules')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
52         // Load cache
53         $GLOBALS['cache_array']['modules'] = $GLOBALS['cache_instance']->getArrayFromCache();
54
55         // Rewrite module cache
56         $modArray = $GLOBALS['cache_array']['modules'];
57
58         // Do only process valid arrays
59         if (!isset($modArray['module'])) {
60                 // Try to remove the cache file
61                 $GLOBALS['cache_instance']->removeCacheFile();
62
63                 // We should fix this
64                 reportBug(__FILE__, __LINE__, 'modArray=<pre>' . print_r($modArray, TRUE) . '</pre>Please try to reload to fix this.');
65         } // END - if
66
67         // Rewrite some parts
68         foreach ($modArray['module'] as $key => $mod) {
69                 // Default without sql_patches
70                 $entries = array('id','title','locked','hidden','admin_only','mem_only');
71
72                 // Is ext-sql_patches newer or equal 0.3.6?
73                 if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
74                         // Add 'has_menu'
75                         array_push($entries, 'has_menu');
76                 } // END - if
77
78                 // Add all
79                 foreach ($entries as $entry) {
80                         // Is the entry set?
81                         if (isset($GLOBALS['cache_array']['modules'][$entry][$key])) {
82                                 // Transfer it
83                                 $GLOBALS['cache_array']['modules'][$entry][$mod] = $modArray[$entry][$key];
84
85                                 // And delete cache
86                                 unset($GLOBALS['cache_array']['modules'][$entry][$key]);
87                         } else {
88                                 // Log this for debug purposes
89                                 logDebugMessage(basename(__FILE__), __LINE__, 'Entry not found. module=' . $mod . ',key=' . $key . ',entry=' . $entry);
90                         }
91                 } // END - foreach
92         } // END - foreach
93         unset($modArray);
94 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
95         // Create cache file here
96         $GLOBALS['cache_instance']->init();
97
98         // Is there up-to-date ext-sql_patches?
99         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
100                 // Yes, has_menu shall be there
101                 $result = sqlQuery('SELECT
102         `id`,
103         `module`,
104         `title`,
105         `locked`,
106         `hidden`,
107         `admin_only`,
108         `title`,
109         `mem_only`,
110         `has_menu`
111 FROM
112         `{?_MYSQL_PREFIX?}_mod_reg`
113 ORDER BY
114         `module` ASC', __FILE__, __LINE__);
115         } else {
116                 // Not recent enough ext-sql_patches ...
117                 $result = sqlQuery('SELECT
118         `id`,
119         `module`,
120         `title`,
121         `locked`,
122         `hidden`,
123         `admin_only`,
124         `title`,
125         `mem_only`
126 FROM
127         `{?_MYSQL_PREFIX?}_mod_reg`
128 ORDER BY
129         `module` ASC', __FILE__, __LINE__);
130         }
131
132         // ... and load all entries
133         while ($content = sqlFetchArray($result)) {
134                 // Add row to cache file
135                 $GLOBALS['cache_instance']->addRow($content);
136         } // END - while
137
138         // Free memory
139         sqlFreeResult($result);
140
141         // Close the cache
142         $GLOBALS['cache_instance']->storeExtensionVersion('mods');
143         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
144         $GLOBALS['cache_instance']->finalize();
145 }
146
147 // [EOF]
148 ?>