deleted file object-cache.php

This commit is contained in:
2023-12-08 23:24:46 +00:00
committed by Gitium
parent 68d0f8ee2d
commit 50cc9dca5b
2840 changed files with 0 additions and 358705 deletions

View File

@ -1,39 +0,0 @@
<?php
namespace W3TC;
class Extension_Wpml_Plugin {
private $_config;
function __construct() {
$this->_config = Dispatcher::config();
}
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' ) );
}
}
public function w3tc_url_to_docroot_filename( $data ) {
$home_url = $data['home_url'];
if ( substr( $data['url'], 0, strlen( $home_url ) ) != $home_url ) {
$data['home_url'] = get_option( 'home' );
}
return $data;
}
}
$p = new Extension_Wpml_Plugin();
$p->run();
if ( is_admin() ) {
$p = new Extension_Wpml_Plugin_Admin();
$p->run();
}