]> git.mxchange.org Git - mailer.git/blobdiff - inc/loader/load_cache-admin.php
Wrapper functions introduced for configuration, loaders refactured:
[mailer.git] / inc / loader / load_cache-admin.php
index eb4de0475df0a4f9de57791b46952f5a57c041f1..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,141 +1,3 @@
 <?php
-/************************************************************************
- * MXChange v0.2.1                                    Start: 09/09/2008 *
- * ===============                              Last change: 09/09/2008 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : load_cache-config.php                            *
- * -------------------------------------------------------------------- *
- * Short description : Load more cache files                            *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Mehr Cache-Dateien nachladen                     *
- * -------------------------------------------------------------------- *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
- *                                                                      *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
- * (at your option) any later version.                                  *
- *                                                                      *
- * This program is distributed in the hope that it will be useful,      *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
- * GNU General Public License for more details.                         *
- *                                                                      *
- * You should have received a copy of the GNU General Public License    *
- * along with this program; if not, write to the Free Software          *
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
- * MA  02110-1301  USA                                                  *
- ************************************************************************/
-
-// Some security stuff...
-if (!defined('__SECURITY')) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-} // END - if
-
-// Let's start with the admins table...
-if (($GLOBALS['cache_instance']->loadCacheFile("admins")) && ($GLOBALS['cache_instance']->extensionVersionMatches("admins"))) {
-       // Load cache
-       $GLOBALS['cache_array']['admins'] = $GLOBALS['cache_instance']->getArrayFromCache();
-
-       // Check if valid
-       if ((isset($GLOBALS['cache_array']['admins']['login'])) && (is_array($GLOBALS['cache_array']['admins']['login'])) && (is_array($GLOBALS['cache_array']['admins']['aid']))) {
-               // Check count
-               if (count($GLOBALS['cache_array']['admins']['login']) == count($GLOBALS['cache_array']['admins']['aid'])) {
-                       // Get "id map"
-                       $idMap = $GLOBALS['cache_array']['admins']['aid'];
-
-                       // Rewrite the cache array
-                       for ($idx = (count($idMap) - 1); $idx >= 0; $idx--) {
-                               // Rewrite all entries
-                               foreach ($GLOBALS['cache_array']['admins'] as $key=>$entryArray) {
-                                       // Rewrite the entry
-                                       if ($key == "aid") {
-                                               // Rewrite admin id (use login name as index)
-                                               $GLOBALS['cache_array']['admins']['aid'][$GLOBALS['cache_array']['admins']['login'][$idx]] = $entryArray[$idx];
-                                       } else {
-                                               // Rewrite regular entry
-                                               $GLOBALS['cache_array']['admins'][$key][$idMap[$idx]] = $entryArray[$idx];
-                                       }
-
-                                       // Is the last entry reached?
-                                       if ($idx == 0) {
-                                               // Remove it
-                                               unset($GLOBALS['cache_array']['admins'][$key][0]);
-                                       } // END - if
-                               } // END - if
-                       } // END - for
-               } else {
-                       // Nope, cache file is corrupted!
-                       $GLOBALS['cache_instance']->destroyCacheFile();
-                       unset($GLOBALS['cache_array']['admins']);
-               }
-       } else {
-               // Nope, cache file is corrupted!
-               $GLOBALS['cache_instance']->destroyCacheFile();
-               unset($GLOBALS['cache_array']['admins']);
-       }
-} elseif ((getConfig('cache_admins') == "Y") && ($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != "-1")) {
-       // Create cache file
-       $GLOBALS['cache_instance']->init("ADMINS");
-       $GLOBALS['cache_instance']->storeExtensionVersion("admins");
-
-       // Load every data from DB to cache file
-       $ADD = RUN_FILTER('sql_admin_extra_data');
-
-       // Query the database about this
-       $result_admins = SQL_QUERY("SELECT id AS aid, login, password, email".$ADD."
-FROM `{!_MYSQL_PREFIX!}_admins`
-ORDER BY login", __FILE__, __LINE__);
-       while($dummy = SQL_FETCHARRAY($result_admins)) {
-               // Save row
-               $GLOBALS['cache_instance']->addRow($dummy);
-       } // END - while
-
-       // Free memory
-       SQL_FREERESULT($result_admins);
-
-       // Close cache
-       $GLOBALS['cache_instance']->finalize();
-
-       // Reload the cache
-       LOAD_INC(__FILE__);
-}
-
-// Next cached table are the admins_acls...
-if (GET_EXT_VERSION("admins") >= "0.3") {
-       // Check for cache file
-       if (($GLOBALS['cache_instance']->loadCacheFile("admins_acls")) && ($GLOBALS['cache_instance']->extensionVersionMatches("admins"))) {
-               // Load referal system from cache
-               $GLOBALS['cache_array']['admin_acls'] = $GLOBALS['cache_instance']->getArrayFromCache();
-       } elseif ((getConfig('cache_acls') == "Y") && ($GLOBALS['output_mode'] != "1") && ($GLOBALS['output_mode'] != "-1")) {
-               // Create cache file here
-               $GLOBALS['cache_instance']->init("ADMINS_ACLS");
-               $GLOBALS['cache_instance']->storeExtensionVersion("admins");
-
-               // Load all modules and their data
-               $result = SQL_QUERY("SELECT id, admin_id, action_menu, what_menu, access_mode FROM `{!_MYSQL_PREFIX!}_admins_acls` ORDER BY admin_id, action_menu, what_menu", __FILE__, __LINE__);
-
-               // Add all rows
-               while ($data = SQL_FETCHARRAY($result)) {
-                       // Add row to cache file
-                       $GLOBALS['cache_instance']->addRow($data);
-               } // END - while
-
-               // Free memory
-               SQL_FREERESULT($result);
-
-               // Close cache
-               $GLOBALS['cache_instance']->finalize();
-
-               // Reload the cache
-               LOAD_INC(__FILE__);
-       }
-} // END - if
-
-//
+// @DEPRECATED
 ?>