403Webshell
Server IP : 185.143.233.238  /  Your IP : 185.215.232.195
Web Server : nginx/1.22.1
System : Linux server2065 6.1.0-35-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.137-1 (2025-05-07) x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/bcandle/wp-content/plugins/jet-engine/includes/modules/performance/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/bcandle/wp-content/plugins/jet-engine/includes/modules/performance/performance.php
<?php
/**
 * Performance manager module
 */

// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
	die;
}

/**
 * Define Jet_Engine_Module_Performance class
 */
class Jet_Engine_Module_Performance extends Jet_Engine_Module_Base {

	public $instance = null;

	/**
	 * Module ID
	 *
	 * @return string
	 */
	public function module_id() {
		return 'performance';
	}

	/**
	 * Module name
	 *
	 * @return string
	 */
	public function module_name() {
		return __( 'Performance', 'jet-engine' );
	}

	/**
	 * Returns detailed information about current module for the dashboard page
	 * @return [type] [description]
	 */
	public function get_module_details() {
		return 'Built-in performance manager module';
	}

	/**
	 * Module init
	 *
	 * @return void
	 */
	public function module_init() {
		$this->create_instance();
	}

	/**
	 * Create module instance
	 *
	 * @return [type] [description]
	 */
	public function create_instance() {
		require_once jet_engine()->plugin_path( 'includes/modules/performance/inc/module.php' );
		$this->instance = \Jet_Engine\Modules\Performance\Module::instance();
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit