X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-optimize.php;h=16c12d8826a04d09abf93b44346bb6da1ae40f01;hb=579747bc21e7026a4dd39f58cb2f34453c521eec;hp=d2a0773b57123e572e06c7fefddab19d152d389f;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/inc/modules/admin/what-optimize.php b/inc/modules/admin/what-optimize.php index d2a0773b57..16c12d8826 100644 --- a/inc/modules/admin/what-optimize.php +++ b/inc/modules/admin/what-optimize.php @@ -14,12 +14,10 @@ * $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 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2012 by Mailer Developer Team * + * For more information visit: http://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 * @@ -43,60 +41,52 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Optimize and repair database and return the result as a multi-dimensional array -$DATA = repairOptimizeDatabase(); +$content = repairOptimizeDatabase(); // Output rows -$SW = 2; $gain_tabs = '0'; $OUT = ''; -foreach ($DATA['tables'] as $row_array) { +$gain_tabs = '0'; $OUT = ''; +foreach ($content['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'; - // Get optimization status - $REP = getMessage('OPTIMIZE_STATUS_' . strtoupper($row_array[1]).''); - - $OPT = getMessage('OPTIMIZE_STATUS_UNSUPPORTED'); + // Get repair/optimization status + $repairStatus = '{--ADMIN_OPTIMIZE_STATUS_' . str_replace(array('__', ',', '+', chr(39), ' '), array('_', '', '', '', '_'), strtoupper($row_array[1])) . '--}'; + $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_UNSUPPORTED--}'; if ($row_array[4] > 0) { - $OPT = getMessage('OPTIMIZE_STATUS_OPTIMIZED'); + $optimizeStatus = '{--ADMIN_OPTIMIZE_STATUS_OPTIMIZED--}'; $B1 = ''; $B2 = ''; $gain_tabs++; - } elseif (count(explode(' ', $row_array[2])) == '0') { - $OPT = getMessage('OPTIMIZE_STATUS_' . strtoupper($row_array[2]).''); + } 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, + $row = array( 'b1' => $B1, 'b2' => $B2, 'tpl' => $row_array[0], - 'rep' => $REP, - 'opt' => $OPT, - 'sum' => translateComma($row_array[3]), - 'sav' => translateComma($row_array[4]), + 'rep' => $repairStatus, + 'opt' => $optimizeStatus, + 'sum' => $row_array[3], + 'sav' => $row_array[4], ); // Load row template and switch color - $OUT .= loadTemplate('admin_optimize_row', true, $content); - $SW = 3 - $SW; + $OUT .= loadTemplate('admin_optimize_row', true, $row); } // END - foreach // Remember rows $content['rows'] = $OUT; -// Prepare data for the template -$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']); +// Transfer data to $content for template +$content['now_optimized'] = $gain_tabs; // Load main template loadTemplate('admin_optimize', false, $content);