-
Notifications
You must be signed in to change notification settings - Fork 89
/
Copy pathExtension_ImageService_Widget_View.php
58 lines (54 loc) · 1.59 KB
/
Extension_ImageService_Widget_View.php
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
57
58
<?php
/**
* File: Extension_ImageService_Widget_View.php
*
* @package W3TC
*
* @since 2.7.0
*/
namespace W3TC;
if ( ! defined( 'W3TC' ) ) {
die();
}
$config = Dispatcher::config();
if ( $config->is_extension_active( 'imageservice' ) ) {
?>
<div id="w3tc-webp-widget-stats-container">
<h3 class="w3tc-webp-widget-stats-title"><?php esc_html_e( 'Status', 'w3-total-cache' ); ?></h3>
<div id="counts_chart"></div>
<h3 class="w3tc-webp-widget-stats-title"><?php esc_html_e( 'API Use Limits', 'w3-total-cache' ); ?></h3>
<div id="api_charts"></div>
<?php if ( ! Util_Environment::is_w3tc_pro( $config ) ) : ?>
<div class="notice notice-info" style="margin: 0;">
<p><?php esc_html_e( 'Need higher API limits? Upgrade to Pro for significantly higher hourly limits and no monthly cap!', 'w3-total-cache' ); ?></p>
<p><input type="button" class="button-primary button-buy-plugin" data-src="account_widget" value="<?php esc_attr_e( 'Learn more about Pro', 'w3-total-cache' ); ?>" /></p>
</div>
<?php endif ?>
</div>
<?php
} else {
?>
<div id="w3tc-webp-widget-stats-container" class="w3tc-webp-widget-stats-inactive">
<?php
echo wp_kses(
Util_Ui::button_link(
__( 'Enable WebP Converter', 'w3-total-cache' ),
Util_Ui::admin_url( 'admin.php?page=w3tc_general&w3tc_message=65b942a33d66c#image_service' ),
false,
'button-primary'
),
array(
'input' => array(
'type' => array(),
'name' => array(),
'class' => array(),
'value' => array(),
'onclick' => array(),
'data-src' => array(),
),
)
);
?>
</div>
<?php
}