1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php if (!defined('WPO_VERSION')) die('No direct access allowed'); ?> <li id="<?php echo $file['uid']; ?>"> <span class="filename"><a href="<?php echo esc_url($file['file_url']); ?>" target="_blank"><?php echo htmlspecialchars($file['filename']); ?></a> (<?php echo $file['fsize']; ?>)</span> <a href="#" class="log"><?php _e('Show information', 'wp-optimize'); ?></a> <div class="hidden wpo_min_log"><?php if ($file['log']) { WP_Optimize()->include_template( 'minify/cached-file-log.php', false, array( 'log' => $file['log'] ) ); } ?></div> </li>
|