PluginProbe ʕ •ᴥ•ʔ
Smush – Image Optimization, Compression, Lazy Load, WebP & CDN / 3.16.4
Smush – Image Optimization, Compression, Lazy Load, WebP & CDN v3.16.4
4.1.0 4.0.3 4.0.2 2.8.1 2.9.1 3.0.0 3.0.1 3.0.2 3.1.1 3.10.1 3.10.2 3.10.3 3.11.1 3.12.3 3.12.4 3.12.5 3.12.6 3.13.0 3.13.1 3.13.2 3.14.0 3.14.1 3.14.2 3.15.0 3.15.1 3.15.2 3.15.3 3.15.4 3.15.5 3.16.2 3.16.4 3.16.5 3.16.6 3.17.0 3.17.1 3.18.0 3.18.1 3.2.0.1 3.2.1 3.2.2.1 3.2.4 3.20.0 3.21.1 3.22.1 3.22.3 3.23.0 3.23.1 3.23.2 3.23.3 3.23.4 3.24.0 3.24.0-beta.2 3.3.0 3.3.1 3.3.2 3.4.1 3.4.2 3.6.1 3.6.3 3.7.0 3.7.1 3.7.2 3.7.3 3.8.2 3.8.3 3.8.4 3.8.5 3.8.7 3.8.8 3.9.0 3.9.1 3.9.11 3.9.2 3.9.4 3.9.5 3.9.8 3.9.9 trunk 1.0.0 1.0.1 1.0.2 1.1 1.1.1 1.1.2 1.1.3 1.2 1.2.1 1.2.10 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.1 1.3.2 1.3.3 1.3.4 1.4.0 1.4.1 1.4.2 1.4.3 1.5.0 1.6.0 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.5.1 1.6.5.2 1.6.5.3 1.6.5.4 1.7 1.7.1 1.7.1.1 2.0 2.0.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.6.2 2.0.6.3 2.0.6.5 2.0.7 2.0.7.1 2.1 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2 2.2.1 2.2.2 2.3 2.3.1 2.4 2.4.2 2.4.3 2.4.4 2.4.5 2.5.2 2.5.3 2.6.1 2.6.2 2.6.3 2.7 2.7.1 2.7.4 2.7.4.1 2.7.5 2.7.6 2.7.8 2.7.8.1 2.7.9.1 2.8.0 2.8.0.1
wp-smushit / app / common / summary-segment.php
wp-smushit / app / common Last commit date
all-images-smushed-notice.php 2 years ago circle-progress-bar.php 2 years ago footer-links.php 2 years ago footer-plugins-upsell.php 2 years ago meta-box-footer.php 2 years ago progress-bar.php 2 years ago recheck-images-notice.php 2 years ago scan-progress-bar.php 2 years ago summary-segment.php 2 years ago
summary-segment.php
39 lines
1 <?php
2 /**
3 * @var string $human_bytes
4 * @var int $resize_count Number of resizes images.
5 * @var int $total_optimized Total nubmer of images optimized.
6 * @var string|int $stats_percent
7 */
8
9 ?>
10 <div class="sui-summary-segment">
11 <div class="sui-summary-details">
12 <span class="sui-summary-large wp-smush-stats-human">
13 <?php echo esc_html( $human_bytes ); ?>
14 </span>
15 <span class="sui-summary-detail wp-smush-savings">
16 /<span class="wp-smush-stats-percent"><?php echo esc_html( $stats_percent ); ?></span>% </span>
17 <span class="sui-summary-sub">
18 <?php esc_html_e( 'Total Savings', 'wp-smushit' ); ?>
19 </span>
20 <span class="smushed-items-count">
21 <span class="wp-smush-count-total">
22 <span class="sui-summary-detail wp-smush-total-optimised">
23 <?php echo esc_html( $total_optimized ); ?>
24 </span>
25 <span class="sui-summary-sub">
26 <?php esc_html_e( 'Images Smushed', 'wp-smushit' ); ?>
27 </span>
28 </span>
29 <span class="wp-smush-count-resize-total <?php echo $resize_count > 0 ? '' : 'sui-hidden'; ?>">
30 <span class="sui-summary-detail wp-smush-total-optimised">
31 <?php echo esc_html( $resize_count ); ?>
32 </span>
33 <span class="sui-summary-sub">
34 <?php esc_html_e( 'Images Resized', 'wp-smushit' ); ?>
35 </span>
36 </span>
37 </span>
38 </div>
39 </div>