]> git.mxchange.org Git - mailer.git/blobdiff - 0.2.1/inc/modules/admin/what-optimize.php
template
[mailer.git] / 0.2.1 / inc / modules / admin / what-optimize.php
index 49991068f471ee09e1821972f9a839cff4a16c1c..be5a6e3b4de31634401a3f96e39a8406dd2bc9f8 100644 (file)
@@ -1,96 +1,96 @@
-<?php\r
-/************************************************************************\r
- * MXChange v0.2.1                                    Start: 09/12/2004 *\r
- * ================                             Last change: 09/12/2004 *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * File              : what-optimize.php                                *\r
- * -------------------------------------------------------------------- *\r
- * Short description : Optimize and repair database                     *\r
- * -------------------------------------------------------------------- *\r
- * Kurzbeschreibung  : Datenbank optimieren und reparieren              *\r
- * -------------------------------------------------------------------- *\r
- *                                                                      *\r
- * -------------------------------------------------------------------- *\r
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
- * For more information visit: http://www.mxchange.org                  *\r
- *                                                                      *\r
- * This program is free software; you can redistribute it and/or modify *\r
- * it under the terms of the GNU General Public License as published by *\r
- * the Free Software Foundation; either version 2 of the License, or    *\r
- * (at your option) any later version.                                  *\r
- *                                                                      *\r
- * This program is distributed in the hope that it will be useful,      *\r
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
- * GNU General Public License for more details.                         *\r
- *                                                                      *\r
- * You should have received a copy of the GNU General Public License    *\r
- * along with this program; if not, write to the Free Software          *\r
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
- * MA  02110-1301  USA                                                  *\r
- ************************************************************************/\r
-\r
-// Some security stuff...\r
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))\r
-{\r
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";\r
-       require($INC);\r
-}\r
-// Add description as navigation point\r
-ADD_DESCR("admin", basename(__FILE__));\r
-\r
-// Optimize and repair database and return the result as a multi-dimensional array\r
-$DATA = REPAIR_OPTIMIZE_DB();\r
-\r
-// Output rows\r
-$SW = 2; $gain_tabs = 0; $OUT = "";\r
-foreach ($DATA['tables'] as $row_array)\r
-{\r
-       // Fixes a bug which causes a parser error on eval'd code\r
-       if (empty($row_array[1])) $row_array[1] = "NONE";\r
-       $eval = "\$REP = OPTIMIZE_STATUS_".strtoupper($row_array[1]).";";\r
-       eval($eval); $B1 = ""; $B2 = "";\r
-       if ($row_array[4] > 0)\r
-       {\r
-               $OPT = OPTIMIZE_STATUS_OPTIMIZED;\r
-               $B1 = "<STRONG>"; $B2 = "<STRONG>";\r
-               $gain_tabs++;\r
-       }\r
-        else\r
-       {\r
-               $eval = "\$OPT = OPTIMIZE_STATUS_".strtoupper($row_array[2]).";";\r
-               eval($eval);\r
-       }\r
-\r
-       // Prepare data for the row template\r
-       $content = array(\r
-               'sw'  => $SW,\r
-               'b1'  => $B1,\r
-               'b2'  => $B2,\r
-               'tpl' => $row_array[0],\r
-               'rep' => $REP,\r
-               'opt' => $OPT,\r
-               'sum' => TRANSLATE_COMMA($row_array[3]),\r
-               'sav' => TRANSLATE_COMMA($row_array[4]),\r
-       );\r
-\r
-       // Load row template and switch color\r
-       $OUT .= LOAD_TEMPLATE("admin_optimize_row", true, $content);\r
-       $SW = 3 - $SW;\r
-}\r
-define('__TABLE_ROWS', $OUT);\r
-\r
-// Prepare data for the template\r
-define('__TOTAL_TABS'     , $DATA['total_tabs']);\r
-define('__TOTAL_SIZE'     , TRANSLATE_COMMA($DATA['total_size']));\r
-define('__TOTAL_CALLS'    , $DATA['total_rows']);\r
-define('__TOTAL_OPTIMIZED', TRANSLATE_COMMA($DATA['total_opti']));\r
-define('__NOW_OPTIMIZED'  , $gain_tabs);\r
-define('__NOW_SAVED'      , TRANSLATE_COMMA($DATA['total_gain']));\r
-\r
-// Load main template\r
-LOAD_TEMPLATE("admin_optimize");\r
-\r
-//\r
-?>\r
+<?php
+/************************************************************************
+ * MXChange v0.2.1                                    Start: 09/12/2004 *
+ * ================                             Last change: 09/12/2004 *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * File              : what-optimize.php                                *
+ * -------------------------------------------------------------------- *
+ * Short description : Optimize and repair database                     *
+ * -------------------------------------------------------------------- *
+ * Kurzbeschreibung  : Datenbank optimieren und reparieren              *
+ * -------------------------------------------------------------------- *
+ *                                                                      *
+ * -------------------------------------------------------------------- *
+ * 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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
+{
+       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
+       require($INC);
+}
+// Add description as navigation point
+ADD_DESCR("admin", basename(__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 = "";
+foreach ($DATA['tables'] as $row_array)
+{
+       // 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 = "";
+       if ($row_array[4] > 0)
+       {
+               $OPT = OPTIMIZE_STATUS_OPTIMIZED;
+               $B1 = "<STRONG>"; $B2 = "<STRONG>";
+               $gain_tabs++;
+       }
+        else
+       {
+               $eval = "\$OPT = OPTIMIZE_STATUS_".strtoupper($row_array[2]).";";
+               eval($eval);
+       }
+
+       // 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]),
+       );
+
+       // Load row template and switch color
+       $OUT .= LOAD_TEMPLATE("admin_optimize_row", true, $content);
+       $SW = 3 - $SW;
+}
+define('__TABLE_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']));
+
+// Load main template
+LOAD_TEMPLATE("admin_optimize");
+
+//
+?>