Uname: Linux p3plzcpnl499967.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Software: Apache
PHP version: 8.2.30 [ PHP INFO ] PHP os: Linux
Server Ip: 208.109.40.231
Your Ip: 216.73.216.173
User: nayff91c5tsx (10005085) | Group: nayff91c5tsx (10005085)
Safe Mode: OFF
Disable Function:
NONE

name : 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();
	}

}
© 2026 GrazzMean