X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-optimize.php;h=d462c8a021ca97f75eb352e88c3041100c3b6630;hb=5b794a32b30ec5322765c89a22c4c27aece94a42;hp=e11b68ba38e2c16f15b51d401c8922e3f768d39c;hpb=7f104f6fe558bb56b4205241435a2357c2feece1;p=mailer.git diff --git a/inc/modules/admin/what-optimize.php b/inc/modules/admin/what-optimize.php index e11b68ba38..d462c8a021 100644 --- a/inc/modules/admin/what-optimize.php +++ b/inc/modules/admin/what-optimize.php @@ -10,9 +10,14 @@ * -------------------------------------------------------------------- * * 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 * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -32,37 +37,36 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!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) -{ +$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 = ""; - $OPT = OPTIMIZE_STATUS_UNSUPPORTED; - if ($row_array[4] > 0) - { - $OPT = OPTIMIZE_STATUS_OPTIMIZED; - $B1 = ""; $B2 = ""; + if (empty($row_array[1])) $row_array[1] = 'NONE'; + + // Get optimization status + $REP = getMessage('OPTIMIZE_STATUS_' . strtoupper($row_array[1]).''); + + $OPT = getMessage('OPTIMIZE_STATUS_UNSUPPORTED'); + + if ($row_array[4] > 0) { + $OPT = getMessage('OPTIMIZE_STATUS_OPTIMIZED'); + $B1 = ''; $B2 = ''; $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 = getMessage('OPTIMIZE_STATUS_' . strtoupper($row_array[2]).''); } // Prepare data for the row template @@ -73,26 +77,28 @@ 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); + $OUT .= loadTemplate('admin_optimize_row', true, $content); $SW = 3 - $SW; -} -define('__TABLE_ROWS', $OUT); +} // END - foreach + +// 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'])); +$content['total_tabs'] = $DATA['total_tabs']; +$content['total_size'] = translateComma($DATA['total_size']); +$content['total_rows'] = $DATA['total_rows']; +$content['total_optimized'] = translateComma($DATA['total_opti']); +$content['now_optimized'] = $gain_tabs; +$content['now_saved'] = translateComma($DATA['total_gain']); // Load main template -LOAD_TEMPLATE("admin_optimize"); +loadTemplate('admin_optimize', false, $content); -// +// [EOF] ?>