]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-optimize.php
A lot CSS classes rewritten, please update all your themes.
[mailer.git] / inc / modules / admin / what-optimize.php
index 2c88f2a89a00d3c8be152da481d30c045500d8d7..85a1ac0244661a631eab6053ebf886780d153bf4 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 09/12/2004 *
- * ================                             Last change: 09/12/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 09/12/2004 *
+ * ===================                          Last change: 09/12/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-optimize.php                                *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Datenbank optimieren und reparieren              *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $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 - 2008 by Roland Haeder                           *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
  * For more information visit: http://www.mxchange.org                  *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
+
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addMenuDescription('admin', __FILE__);
 
 // Optimize and repair database and return the result as a multi-dimensional array
-$DATA = REPAIR_OPTIMIZE_DB();
+$DATA = repairOptimizeDatabase();
 
 // Output rows
-$SW = 2; $gain_tabs = 0; $OUT = "";
-foreach ($DATA['tables'] as $row_array)
-{
+$gain_tabs = '0'; $OUT = '';
+foreach ($DATA['tables'] as $row_array) {
+       // Init variables
+       $B1 = ''; $B2 = '';
+
        // Fixes a bug which causes a parser error on eval'd code
-       if (empty($row_array[1])) $row_array[1] = "NONE";
-       $eval = "\$REP = OPTIMIZE_STATUS_".strtoupper($row_array[1]).";";
-       eval($eval); $B1 = ""; $B2 = "";
-       $OPT = OPTIMIZE_STATUS_UNSUPPORTED;
-       if ($row_array[4] > 0)
-       {
-               $OPT = OPTIMIZE_STATUS_OPTIMIZED;
-               $B1 = "<STRONG>"; $B2 = "<STRONG>";
+       if (empty($row_array[1])) $row_array[1] = 'NONE';
+
+       // Get repair/optimization status
+       $repairStatus = '{--ADMIN_OPTIMIZE_STATUS_' . str_replace('__', '_', str_replace(',', '', str_replace('+', '', str_replace("'", '', str_replace(' ', '_', strtoupper($row_array[1])))))) . '--}';
+       $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_UNSUPPORTED--}';
+
+       if ($row_array[4] > 0) {
+               $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_OPTIMIZED--}';
+               $B1 = '<strong>'; $B2 = '<strong>';
                $gain_tabs++;
-       }
-        elseif (count(explode(" ", $row_array[2])) == 0)
-       {
-               $eval = "\$OPT = OPTIMIZE_STATUS_".strtoupper($row_array[2]).";";
-               die($eval);
-               eval($eval);
+       } elseif (count(explode(' ', $row_array[2])) == 0) {
+               $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_' . strtoupper($row_array[2]) . '--}';
        }
 
        // Prepare data for the row template
        $content = array(
-               'sw'  => $SW,
                'b1'  => $B1,
                'b2'  => $B2,
                'tpl' => $row_array[0],
-               'rep' => $REP,
-               'opt' => $OPT,
-               'sum' => TRANSLATE_COMMA($row_array[3]),
-               'sav' => TRANSLATE_COMMA($row_array[4]),
+               'rep' => $repairStatus,
+               'opt' => $optimizeStatus,
+               'sum' => $row_array[3],
+               'sav' => $row_array[4],
        );
 
        // Load row template and switch color
-       $OUT .= LOAD_TEMPLATE("admin_optimize_row", true, $content);
-       $SW = 3 - $SW;
-}
-define('__TABLE_ROWS', $OUT);
+       $OUT .= loadTemplate('admin_optimize_row', true, $content);
+} // END - foreach
+
+// Transfer main data
+$content = $DATA;
+
+// Remember rows
+$content['rows'] = $OUT;
 
-// Prepare data for the template
-define('__TOTAL_TABS'     , $DATA['total_tabs']);
-define('__TOTAL_SIZE'     , TRANSLATE_COMMA($DATA['total_size']));
-define('__TOTAL_CALLS'    , $DATA['total_rows']);
-define('__TOTAL_OPTIMIZED', TRANSLATE_COMMA($DATA['total_opti']));
-define('__NOW_OPTIMIZED'  , $gain_tabs);
-define('__NOW_SAVED'      , TRANSLATE_COMMA($DATA['total_gain']));
+// Transfer data to $content for template
+$content['now_optimized'] = $gain_tabs;
 
 // Load main template
-LOAD_TEMPLATE("admin_optimize");
+loadTemplate('admin_optimize', false, $content);
 
-//
+// [EOF]
 ?>