2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 09/09/2008 *
4 * =================== Last change: 09/09/2008 *
6 * -------------------------------------------------------------------- *
7 * File : load-config.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Load more cache files *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Mehr Cache-Dateien nachladen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
41 } elseif (isInstallationPhase()) {
42 // Use this code if you don't want to run this cache loader on installation phase
46 // Let's start with the admins table...
47 if (($GLOBALS['cache_instance']->loadCacheFile('admin')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
49 $GLOBALS['cache_array']['admin'] = $GLOBALS['cache_instance']->getArrayFromCache();
52 if ((isset($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['admin_id']))) {
54 if (count($GLOBALS['cache_array']['admin']['login']) == count($GLOBALS['cache_array']['admin']['admin_id'])) {
57 foreach ($GLOBALS['cache_array']['admin']['login'] as $idx => $admin) {
58 // Rewrite all entries
59 foreach ($GLOBALS['cache_array']['admin'] as $key => $entry) {
60 // Do we have login or regular entries?
61 if ($key == 'admin_id') {
62 // Admin id, so use login
63 $admins[$key][$GLOBALS['cache_array']['admin']['login'][$idx]] = $entry[$idx];
65 // Regular entry so use id
66 $admins[$key][$GLOBALS['cache_array']['admin']['admin_id'][$idx]] = $entry[$idx];
71 // Transfer back to cache array and remove dummy
72 $GLOBALS['cache_array']['admin'] = $admins;
75 // Nope, cache file is corrupted!
76 $GLOBALS['cache_instance']->removeCacheFile();
77 unset($GLOBALS['cache_array']['admin']);
80 // Nope, cache file is corrupted!
81 $GLOBALS['cache_instance']->removeCacheFile();
82 unset($GLOBALS['cache_array']['admin']);
84 } elseif (isHtmlOutputMode()) {
86 $GLOBALS['cache_instance']->init();
88 // Load every data from DB to cache file
89 $add = runFilterChain('sql_admin_extra_data');
91 // Query the database about this
92 $result = SQL_QUERY('SELECT
99 `{?_MYSQL_PREFIX?}_admins`
101 `login` ASC', __FILE__, __LINE__);
102 while ($row = SQL_FETCHARRAY($result)) {
104 $GLOBALS['cache_instance']->addRow($row);
108 SQL_FREERESULT($result);
111 $GLOBALS['cache_instance']->storeExtensionVersion('admins');
112 $GLOBALS['cache_instance']->finalize();
115 // Next cached table are the admins_acls...
116 if (isExtensionInstalledAndNewer('admins', '0.3')) {
117 // Check for cache file
118 if (($GLOBALS['cache_instance']->loadCacheFile('admin_acls')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
119 // Load admin ACLs from cache
120 $GLOBALS['cache_array']['admin_acls'] = $GLOBALS['cache_instance']->getArrayFromCache();
123 if ((isset($GLOBALS['cache_array']['admin_acls']['admin_id'])) && (is_array($GLOBALS['cache_array']['admin_acls']['admin_id'])) && (isset($GLOBALS['cache_array']['admin_acls']['access_mode'])) && (is_array($GLOBALS['cache_array']['admin_acls']['access_mode']))) {
125 if (count($GLOBALS['cache_array']['admin_acls']['admin_id']) == count($GLOBALS['cache_array']['admin_acls']['access_mode'])) {
128 foreach ($GLOBALS['cache_array']['admin_acls']['admin_id'] as $idx => $admin) {
129 // Rewrite all entries
130 foreach ($GLOBALS['cache_array']['admin_acls'] as $key => $entry) {
131 // Do we have 'admin_id' or regular entries?
132 if ($key != 'admin_id') {
133 // Regular entry so use id
134 array_push($admins[$key][$GLOBALS['cache_array']['admin_acls']['admin_id'][$idx]], $entry[$idx]);
139 // Transfer back to cache array and remove dummy
140 $GLOBALS['cache_array']['admin_acls'] = $admins;
143 // Nope, cache file is corrupted!
144 $GLOBALS['cache_instance']->removeCacheFile();
145 unset($GLOBALS['cache_array']['admin_acls']);
147 } elseif (count($GLOBALS['cache_array']['admin_acls']) > 0) {
148 // Nope, cache file is corrupted!
149 $GLOBALS['cache_instance']->removeCacheFile();
150 unset($GLOBALS['cache_array']['admin_acls']);
151 } elseif (isDebugModeEnabled()) {
152 // This may drive a lot messages to the logfile
153 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'No entry found in admin_acls to rewrite.');
155 } elseif (isHtmlOutputMode()) {
156 // Create cache file here
157 $GLOBALS['cache_instance']->init();
159 // Load all admins and their data
160 $result = SQL_QUERY('SELECT * FROM `{?_MYSQL_PREFIX?}_admins_acls` ORDER BY `admin_id` ASC,`action_menu` ASC,`what_menu` ASC', __FILE__, __LINE__);
163 while ($content = SQL_FETCHARRAY($result)) {
164 // Add row to cache file
165 $GLOBALS['cache_instance']->addRow($content);
169 SQL_FREERESULT($result);
172 $GLOBALS['cache_instance']->storeExtensionVersion('admins');
173 $GLOBALS['cache_instance']->finalize();