]> git.mxchange.org Git - mailer.git/blobdiff - inc/loader/load_cache-admin.php
Rewrote 'we' word a little, rewrote mail order to use SQL_INSERTID() instead of anoth...
[mailer.git] / inc / loader / load_cache-admin.php
index fc7d134b718a955f20454c7240eda10e94366f4d..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,141 +1,3 @@
 <?php
-/************************************************************************
- * Mailer v0.2.1-FINAL                                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                     *
- * -------------------------------------------------------------------- *
- * $Revision::                                                        $ *
- * $Date::                                                            $ *
- * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2009 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')) {
-       die();
-} // END - if
-
-// Use this code if you don't want to run this cache loader on installation phase
-if (isInstallationPhase()) return;
-
-// Let's start with the admins table...
-if (($GLOBALS['cache_instance']->loadCacheFile('admin')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
-       // Load cache
-       $GLOBALS['cache_array']['admin'] = $GLOBALS['cache_instance']->getArrayFromCache();
-
-       // Check if valid
-       if ((isset($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['login'])) && (is_array($GLOBALS['cache_array']['admin']['admin_id']))) {
-               // Check count
-               if (count($GLOBALS['cache_array']['admin']['login']) == count($GLOBALS['cache_array']['admin']['admin_id'])) {
-                       // Rewrite the cache
-                       $admins = array();
-                       foreach ($GLOBALS['cache_array']['admin']['login'] as $idx => $admin) {
-                               // Rewrite all entries
-                               foreach ($GLOBALS['cache_array']['admin'] as $key => $entry) {
-                                       // Do we have login or regular entries?
-                                       if ($key == 'login') {
-                                               // Login, so use id
-                                               $admins[$key][$GLOBALS['cache_array']['admin']['admin_id'][$idx]] = $entry[$idx];
-                                       } else {
-                                               // Regular entry so use login
-                                               $admins[$key][$GLOBALS['cache_array']['admin']['login'][$idx]] = $entry[$idx];
-                                       }
-                               } // END - foreach
-                       } // END - foreach
-
-                       // Transfer back to cache array and remove dummy
-                       $GLOBALS['cache_array']['admin'] = $admins;
-                       unset($admins);
-               } else {
-                       // Nope, cache file is corrupted!
-                       $GLOBALS['cache_instance']->removeCacheFile();
-                       unset($GLOBALS['cache_array']['admin']);
-               }
-       } else {
-               // Nope, cache file is corrupted!
-               $GLOBALS['cache_instance']->removeCacheFile();
-               unset($GLOBALS['cache_array']['admin']);
-       }
-} elseif (getOutputMode() != 1) {
-       // Create cache file
-       $GLOBALS['cache_instance']->init();
-
-       // Load every data from DB to cache file
-       $add = runFilterChain('sql_admin_extra_data');
-
-       // Query the database about this
-       $result_admins = SQL_QUERY('SELECT
-       `id` AS admin_id, `login`, `password`, `email`' . $add . '
-FROM
-       `{?_MYSQL_PREFIX?}_admins`
-ORDER BY
-       `login` ASC', __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']->storeExtensionVersion('admins');
-       $GLOBALS['cache_instance']->finalize();
-}
-
-// Next cached table are the admins_acls...
-if (isExtensionInstalledAndNewer('admins', '0.3')) {
-       // Check for cache file
-       if (($GLOBALS['cache_instance']->loadCacheFile('admin_acls')) && ($GLOBALS['cache_instance']->extensionVersionMatches('admins'))) {
-               // Load referal system from cache
-               $GLOBALS['cache_array']['admin_acls'] = $GLOBALS['cache_instance']->getArrayFromCache();
-       } elseif (getOutputMode() != 1) {
-               // Create cache file here
-               $GLOBALS['cache_instance']->init();
-
-               // Load all modules and their data (column 'id' is no longer required)
-               $result = SQL_QUERY('SELECT `admin_id`, `action_menu`, `what_menu`, `access_mode` FROM `{?_MYSQL_PREFIX?}_admins_acls` ORDER BY `admin_id` ASC, `action_menu` ASC, `what_menu` ASC', __FILE__, __LINE__);
-
-               // Add all rows
-               while ($content = SQL_FETCHARRAY($result)) {
-                       // Add row to cache file
-                       $GLOBALS['cache_instance']->addRow($content);
-               } // END - while
-
-               // Free memory
-               SQL_FREERESULT($result);
-
-               // Close cache
-               $GLOBALS['cache_instance']->storeExtensionVersion('admins');
-               $GLOBALS['cache_instance']->finalize();
-       }
-} // END - if
-
-// [EOF]
+// @DEPRECATED
 ?>