1
2
3
4
5
6
7
8
9
10
|
<?php if (!defined('WPO_VERSION')) die('No direct access allowed'); ?> <h5><?php echo esc_html($log->header); ?></h5> <ul><?php foreach ((array) $log->files as $handle => $file) { echo '<li'.($file->success ? '' : ' class="failed"').'><span class="wpo_min_file_url"><a href="'.esc_url(get_home_url().$file->url).'" target="_blank">'.htmlspecialchars($file->url).'</a> ('.WP_Optimize()->format_size(filesize(untrailingslashit(get_home_path()).$file->url)).')</span>'; if (property_exists($file, 'debug')) echo '<span class="wpo_min_file_debug">'.htmlspecialchars($file->debug).'</span>'; echo '</li>'; } ?> </ul>
|