]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-optimize.php
A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / modules / admin / what-optimize.php
index e11b68ba38e2c16f15b51d401c8922e3f768d39c..46a4a8c87b6b098183769e2c03260c83afd208d3 100644 (file)
  * -------------------------------------------------------------------- *
  * 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                           *
  * For more information visit: http://www.mxchange.org                  *
 
 // Some security stuff...
 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
        require($INC);
 }
 
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR('admin', __FILE__);
 
 // Optimize and repair database and return the result as a multi-dimensional array
 $DATA = REPAIR_OPTIMIZE_DB();
 
 // Output rows
-$SW = 2; $gain_tabs = 0; $OUT = "";
+$SW = 2; $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 = "";
+
+       // Get optimization status
+       $REP = constant('OPTIMIZE_STATUS_'.strtoupper($row_array[1]).'');
+
        $OPT = OPTIMIZE_STATUS_UNSUPPORTED;
-       if ($row_array[4] > 0)
-       {
+
+       if ($row_array[4] > 0) {
                $OPT = OPTIMIZE_STATUS_OPTIMIZED;
-               $B1 = "<STRONG>"; $B2 = "<STRONG>";
+               $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) {
+               $OPT = constant('OPTIMIZE_STATUS_'.strtoupper($row_array[2]).'');
        }
 
        // Prepare data for the row template
@@ -81,7 +87,7 @@ foreach ($DATA['tables'] as $row_array)
        $OUT .= LOAD_TEMPLATE("admin_optimize_row", true, $content);
        $SW = 3 - $SW;
 }
-define('__TABLE_ROWS', $OUT);
+define('__ROWS', $OUT);
 
 // Prepare data for the template
 define('__TOTAL_TABS'     , $DATA['total_tabs']);