| Server IP : 104.21.21.239 / Your IP : 216.73.216.69 Web Server : Apache/2.4.68 (Amazon Linux) OpenSSL/3.5.5 System : Linux ip-172-31-69-123.ec2.internal 6.1.176-223.369.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Jul 24 13:34:27 UTC 2026 x86_64 User : ec2-user ( 1000) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/home2/domains/ndb/wp-content/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
/**
* widget with stats
*/
class UsageStatistics_Widget {
static private function enabled() {
static $_enabled = null;
if ( is_null( $_enabled ) ) {
$c = Dispatcher::config();
$_enabled = ( $c->get_boolean( 'stats.enabled' ) &&
Util_Environment::is_w3tc_pro( $c ) );
}
return $_enabled;
}
public function init() {
add_action( 'w3tc_widget_setup', array(
$this,
'w3tc_widget_setup'
), 1000 );
}
public function w3tc_widget_setup() {
Util_Widget::add( 'w3tc_usage_statistics',
'<div class="w3tc-widget-w3tc-logo"></div>' .
'<div class="w3tc-widget-text">' .
__( 'Caching Statistics', 'w3-total-cache' ) .
'</div>',
array( $this, 'widget_form' ),
Util_Ui::admin_url( 'admin.php?page=w3tc_stats' ),
'normal',
'Detailed' );
}
static public function admin_init_w3tc_dashboard() {
if ( self::enabled() ) {
wp_enqueue_script( 'w3tc-canvasjs',
plugins_url( 'pub/js/chartjs.min.js', W3TC_FILE ),
array(), W3TC_VERSION );
wp_enqueue_script( 'w3tc-widget-usagestatistics',
plugins_url( 'UsageStatistics_Widget_View.js', W3TC_FILE ),
array(), W3TC_VERSION );
}
}
public function widget_form() {
if ( self::enabled() ) {
include W3TC_DIR . '/UsageStatistics_Widget_View.php';
} else {
include W3TC_DIR . '/UsageStatistics_Widget_View_Disabled.php';
}
}
}