meta-box.php
1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
/**
* Local WebP meta box.
*
* @since 3.8.6
* @package WP_Smush
*
* @var true|string $is_configured Is local WebP module configured. Error message if it's not.
* @var bool $is_webp_active Is local WebP module enabled.
* @var string $upsell_url Upsell URL.
*/
if ( ! defined( 'WPINC' ) ) {
die;
}
?>
<p>
<?php esc_html_e( "Serve WebP versions of your images to supported browsers, and gracefully fall back on JPEGs and PNGs for browsers that don't support WebP.", 'wp-smushit' ); ?>
</p>
<?php if ( ! WP_Smush::is_pro() ) : ?>
<a href="<?php echo esc_url( $upsell_url ); ?>" target="_blank" class="sui-button sui-button-purple">
<?php esc_html_e( 'Upgrade to Pro', 'wp-smushit' ); ?>
</a>
<?php elseif ( ! $is_webp_active ) : ?>
<button class="sui-button sui-button-blue" id="smush-toggle-webp-button" data-action="enable">
<span class="sui-loading-text"><?php esc_html_e( 'Activate', 'wp-smushit' ); ?></span>
<i class="sui-icon-loader sui-loading" aria-hidden="true"></i>
</button>
<?php else : ?>
<?php if ( true === $is_configured ) : ?>
<div class="sui-notice sui-notice-success">
<div class="sui-notice-content">
<div class="sui-notice-message">
<span class="sui-notice-icon sui-icon-check-tick sui-md" aria-hidden="true"></span>
<p><?php esc_html_e( 'WebP conversion is active and working well.', 'wp-smushit' ); ?></p>
</div>
</div>
</div>
<?php else : ?>
<div class="sui-notice sui-notice-warning">
<div class="sui-notice-content">
<div class="sui-notice-message">
<span class="sui-notice-icon sui-icon-warning-alert sui-md" aria-hidden="true"></span>
<p><?php echo esc_html( $is_configured ); ?></p>
</div>
</div>
</div>
<?php endif; ?>
<a href="<?php echo esc_url( $this->get_url( 'smush-webp' ) ); ?>" class="sui-button sui-button-ghost">
<span class="sui-icon-wrench-tool" aria-hidden="true"></span>
<?php esc_html_e( 'Configure', 'wp-smushit' ); ?>
</a>
<?php endif; ?>