| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Old Sites/ict/wp-content/plugins/w3-total-cache/ |
Upload File : |
<?php
namespace W3TC;
class UsageStatistics_GeneralPage {
/**
* W3TC General settings page modifications
*/
static public function admin_init_w3tc_general() {
$o = new UsageStatistics_GeneralPage();
add_filter( 'w3tc_settings_general_anchors',
array( $o, 'w3tc_settings_general_anchors' ) );
add_action( 'w3tc_settings_general_boxarea_stats',
array( $o, 'w3tc_settings_general_boxarea_stats' ) );
}
public function w3tc_settings_general_anchors( $anchors ) {
$anchors[] = array(
'id' => 'stats',
'text' => __( 'Statistics', 'w3-total-cache' ),
);
return $anchors;
}
public function w3tc_settings_general_boxarea_stats() {
include W3TC_DIR . '/UsageStatistics_GeneralPage_View.php';
}
}