X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-optimize.php;h=571df6957cc8b42f97dab9e89ab9f2156c781da3;hb=8ce32e702f3caa76b8d446902948e83e1e6854c8;hp=0b866d0c78bebb7ce8f7bd79367ca75ca48f9d28;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60;p=mailer.git diff --git a/inc/modules/admin/what-optimize.php b/inc/modules/admin/what-optimize.php index 0b866d0c78..571df6957c 100644 --- a/inc/modules/admin/what-optimize.php +++ b/inc/modules/admin/what-optimize.php @@ -1,7 +1,7 @@ 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);