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//Extension_Wpml_Plugin.php
<?php
/**
 * File: Extension_Wpml_Plugin.php
 *
 * @package W3TC
 */

namespace W3TC;

defined( 'ABSPATH' ) || exit;
/**
 * Class Extension_Wpml_Plugin
 *
 * phpcs:disable PSR2.Classes.PropertyDeclaration.Underscore
 */
class Extension_Wpml_Plugin {
	/**
	 * Config
	 *
	 * @var Config
	 */
	private $_config;

	/**
	 * Constructor for the Extension_Wpml_Plugin class.
	 *
	 * @return void
	 */
	public function __construct() {
		$this->_config = Dispatcher::config();
	}

	/**
	 * Executes the main logic of the extension.
	 *
	 * Checks if the W3 Total Cache Pro plugin is active and adds the necessary filter.
	 *
	 * @return void
	 */
	public function run() {
		if ( Util_Environment::is_w3tc_pro( $this->_config ) ) {
			add_filter( 'w3tc_url_to_docroot_filename', array( $this, 'w3tc_url_to_docroot_filename' ) );
		}
	}

	/**
	 * Converts the URL to the document root filename.
	 *
	 * @param array $w3tc_data Associative array containing 'url' and 'home_url' keys.
	 *
	 * @return array The modified data array with updated 'home_url'.
	 */
	public function w3tc_url_to_docroot_filename( $w3tc_data ) {
		$home_url = $w3tc_data['home_url'];

		if ( substr( $w3tc_data['url'], 0, strlen( $home_url ) ) !== $home_url ) {
			$w3tc_data['home_url'] = get_option( 'home' );
		}

		return $w3tc_data;
	}
}

$w3tc_p = new Extension_Wpml_Plugin();
$w3tc_p->run();

if ( is_admin() ) {
	$w3tc_p = new Extension_Wpml_Plugin_Admin();
	$w3tc_p->run();
}

Youez - 2016 - github.com/yon3zu
LinuXploit