Added update_year.sh (still not fully flexible) and updated all years with it.
[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  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
14  * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
15  * For more information visit: http://mxchange.org                      *
16  *                                                                      *
17  * This program is free software; you can redistribute it and/or modify *
18  * it under the terms of the GNU General Public License as published by *
19  * the Free Software Foundation; either version 2 of the License, or    *
20  * (at your option) any later version.                                  *
21  *                                                                      *
22  * This program is distributed in the hope that it will be useful,      *
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
25  * GNU General Public License for more details.                         *
26  *                                                                      *
27  * You should have received a copy of the GNU General Public License    *
28  * along with this program; if not, write to the Free Software          *
29  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
30  * MA  02110-1301  USA                                                  *
31  ************************************************************************/
32
33 // Some security stuff...
34 if (!defined('__SECURITY')) {
35         die();
36 } elseif (isInstaller()) {
37         // Do not run in installation phase
38         //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Run from installation phase.');
39         return FALSE;
40 } elseif (!isExtensionInstalled('mods')) {
41         // Do not run if ext-mods is missing
42         return FALSE;
43 }
44
45 // Next cached table is the module registry (mod_reg)...
46 if (($GLOBALS['cache_instance']->loadCacheFile('modules')) && ($GLOBALS['cache_instance']->extensionVersionMatches('sql_patches'))) {
47         // Load cache
48         $GLOBALS['cache_array']['modules'] = $GLOBALS['cache_instance']->getArrayFromCache();
49
50         // Rewrite module cache
51         $modArray = $GLOBALS['cache_array']['modules'];
52
53         // Do only process valid arrays
54         if (!isset($modArray['module'])) {
55                 // Try to remove the cache file
56                 $GLOBALS['cache_instance']->removeCacheFile();
57
58                 // We should fix this
59                 reportBug(__FILE__, __LINE__, 'modArray=<pre>' . print_r($modArray, TRUE) . '</pre>Please try to reload to fix this.');
60         } // END - if
61
62         // Rewrite some parts
63         foreach ($modArray['module'] as $key => $mod) {
64                 // Default without sql_patches
65                 $entries = array('id', 'title', 'locked', 'admin_only', 'mem_only');
66
67                 // Is ext-sql_patches newer or equal 0.3.6?
68                 if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
69                         // Add 'has_menu'
70                         array_push($entries, 'has_menu');
71                 } // END - if
72
73                 // Add all
74                 foreach ($entries as $entry) {
75                         // Is the entry set?
76                         if (isset($GLOBALS['cache_array']['modules'][$entry][$key])) {
77                                 // Transfer it
78                                 $GLOBALS['cache_array']['modules'][$entry][$mod] = $modArray[$entry][$key];
79
80                                 // And delete cache
81                                 unset($GLOBALS['cache_array']['modules'][$entry][$key]);
82                         } else {
83                                 // Log this for debug purposes
84                                 logDebugMessage(basename(__FILE__), __LINE__, 'Entry not found. module=' . $mod . ',key=' . $key . ',entry=' . $entry);
85                         }
86                 } // END - foreach
87         } // END - foreach
88         unset($modArray);
89 } elseif ((isHtmlOutputMode()) || (isAjaxOutputMode()) || (isRawOutputMode())) {
90         // Create cache file here
91         $GLOBALS['cache_instance']->init();
92
93         // Is there up-to-date ext-sql_patches?
94         if (isExtensionInstalledAndNewer('sql_patches', '0.3.6')) {
95                 // Yes, has_menu shall be there
96                 $result = sqlQuery('SELECT
97         `id`,
98         `module`,
99         `title`,
100         `locked`,
101         `admin_only`,
102         `title`,
103         `mem_only`,
104         `has_menu`
105 FROM
106         `{?_MYSQL_PREFIX?}_mod_reg`
107 ORDER BY
108         `module` ASC', __FILE__, __LINE__);
109         } else {
110                 // Not recent enough ext-sql_patches ...
111                 $result = sqlQuery('SELECT
112         `id`,
113         `module`,
114         `title`,
115         `locked`,
116         `admin_only`,
117         `title`,
118         `mem_only`
119 FROM
120         `{?_MYSQL_PREFIX?}_mod_reg`
121 ORDER BY
122         `module` ASC', __FILE__, __LINE__);
123         }
124
125         // ... and load all entries
126         while ($content = sqlFetchArray($result)) {
127                 // Add row to cache file
128                 $GLOBALS['cache_instance']->addRow($content);
129         } // END - while
130
131         // Free memory
132         sqlFreeResult($result);
133
134         // Close the cache
135         $GLOBALS['cache_instance']->storeExtensionVersion('mods');
136         $GLOBALS['cache_instance']->storeExtensionVersion('sql_patches');
137         $GLOBALS['cache_instance']->finalize();
138 }
139
140 // [EOF]
141 ?>