X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Fmodules%2Fadmin%2Fwhat-optimize.php;h=424f7acce5d06ad72ed5994688b819830a5af56c;hb=49248176a5638be80b148ef55d0dc8c334522bf3;hp=062937607b8838638816b0a25f30c933c00f86d6;hpb=56156f6c4392510cdbe0eb4f2ccefc23b43e2672;p=mailer.git diff --git a/inc/modules/admin/what-optimize.php b/inc/modules/admin/what-optimize.php index 062937607b..424f7acce5 100644 --- a/inc/modules/admin/what-optimize.php +++ b/inc/modules/admin/what-optimize.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * 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 * @@ -33,22 +38,22 @@ // 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", __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 = ""; + $B1 = ''; $B2 = ''; // Fixes a bug which causes a parser error on eval'd code if (empty($row_array[1])) $row_array[1] = "NONE"; @@ -74,23 +79,23 @@ foreach ($DATA['tables'] as $row_array) 'tpl' => $row_array[0], 'rep' => $REP, 'opt' => $OPT, - 'sum' => TRANSLATE_COMMA($row_array[3]), - 'sav' => TRANSLATE_COMMA($row_array[4]), + 'sum' => translateComma($row_array[3]), + 'sav' => translateComma($row_array[4]), ); // Load row template and switch color $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']); -define('__TOTAL_SIZE' , TRANSLATE_COMMA($DATA['total_size'])); +define('__TOTAL_SIZE' , translateComma($DATA['total_size'])); define('__TOTAL_CALLS' , $DATA['total_rows']); -define('__TOTAL_OPTIMIZED', TRANSLATE_COMMA($DATA['total_opti'])); +define('__TOTAL_OPTIMIZED', translateComma($DATA['total_opti'])); define('__NOW_OPTIMIZED' , $gain_tabs); -define('__NOW_SAVED' , TRANSLATE_COMMA($DATA['total_gain'])); +define('__NOW_SAVED' , translateComma($DATA['total_gain'])); // Load main template LOAD_TEMPLATE("admin_optimize");