X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-optimize.php;h=1290113e3acb6bf2ddca18a82f90a23d5890fedb;hb=00974432ffe0ed217b993e1ea5aaaac7dc31e82b;hp=bdcbe49127b4ed3f39f6c8aa270ac99a1aae125c;hpb=66b91ce490ab549425619c95fc12086e126d541b;p=mailer.git diff --git a/inc/modules/admin/what-optimize.php b/inc/modules/admin/what-optimize.php index bdcbe49127..1290113e3a 100644 --- a/inc/modules/admin/what-optimize.php +++ b/inc/modules/admin/what-optimize.php @@ -1,7 +1,7 @@ 0) { - $OPT = OPTIMIZE_STATUS_OPTIMIZED; - $B1 = ""; $B2 = ""; + $OPT = getMessage('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) { + $OPT = getMessage('OPTIMIZE_STATUS_' . strtoupper($row_array[2]).''); } // Prepare data for the row template @@ -84,21 +83,23 @@ foreach ($DATA['tables'] as $row_array) ); // 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('__ROWS', $OUT); +} // END - foreach + +// Remember rows +$content['rows'] = $OUT; // Prepare data for the template -define('__TOTAL_TABS' , $DATA['total_tabs']); -define('__TOTAL_SIZE' , translateComma($DATA['total_size'])); -define('__TOTAL_CALLS' , $DATA['total_rows']); -define('__TOTAL_OPTIMIZED', translateComma($DATA['total_opti'])); -define('__NOW_OPTIMIZED' , $gain_tabs); -define('__NOW_SAVED' , translateComma($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] ?>