mailer project continued:
[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 - 2012 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                 reportBug(__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                         array_push($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         // Do we have up-to-date ext-sql_patches?
95         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
96                 // Yes, has_menu shall be there
97                 $result = SQL_QUERY('SELECT
98         `id`,
99         `module`,
100         `title`,
101         `locked`,
102         `hidden`,
103         `admin_only`,
104         `title`,
105         `mem_only`,
106         `has_menu`
107 FROM
108         `{?_MYSQL_PREFIX?}_mod_reg`
109 ORDER BY
110         `module` ASC', __FILE__, __LINE__);
111         } else {
112                 // Not recent enough ext-sql_patches ...
113                 $result = SQL_QUERY('SELECT
114         `id`,
115         `module`,
116         `title`,
117         `locked`,
118         `hidden`,
119         `admin_only`,
120         `title`,
121         `mem_only`
122 FROM
123         `{?_MYSQL_PREFIX?}_mod_reg`
124 ORDER BY
125         `module` ASC', __FILE__, __LINE__);
126         }
127
128         // ... and load all entries
129         while ($content = SQL_FETCHARRAY($result)) {
130                 // Add row to cache file
131                 $GLOBALS['cache_instance']->addRow($content);
132         } // END - while
133
134         // Free memory
135         SQL_FREERESULT($result);
136
137         // Close the cache
138         $GLOBALS['cache_instance']->storeExtensionVersion('mods');
139         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
140         $GLOBALS['cache_instance']->finalize();
141 }
142
143 // [EOF]
144 ?>