| 1 |
<?php |
| 2 |
|
| 3 |
/** |
| 4 |
* Class Optml_w3_total_cache. |
| 5 |
* |
| 6 |
* @reason Cache_w3_total_cache stores the content of the page before Optimole starts replacing url's |
| 7 |
*/ |
| 8 |
class Optml_w3_total_cache extends Optml_compatibility { |
| 9 |
|
| 10 |
|
| 11 |
/** |
| 12 |
* Should we load the integration logic. |
| 13 |
* |
| 14 |
* @return bool Should we load. |
| 15 |
*/ |
| 16 |
public function should_load() { |
| 17 |
include_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 18 |
return is_plugin_active( 'w3-total-cache/w3-total-cache.php' ); |
| 19 |
} |
| 20 |
|
| 21 |
/** |
| 22 |
* Register integration details. |
| 23 |
*/ |
| 24 |
public function register() { |
| 25 |
if ( Optml_Main::instance()->admin->settings->get( 'cdn' ) === 'enabled' ) { |
| 26 |
add_filter( 'w3tc_minify_processed', [ Optml_Main::instance()->manager, 'replace_content' ], 10 ); |
| 27 |
} |
| 28 |
|
| 29 |
add_action( 'optml_clear_cache', [ $this, 'add_clear_cache_action' ], 10, 1 ); |
| 30 |
} |
| 31 |
/** |
| 32 |
* Clear cache on w3 total cache. |
| 33 |
* |
| 34 |
* @param string|bool $location The location to clear the cache for. If true, clear the cache globally. If a string, clear the cache for a particular url. |
| 35 |
* @return void |
| 36 |
*/ |
| 37 |
public function add_clear_cache_action( $location ) { |
| 38 |
|
| 39 |
if ( $location === true && function_exists( 'w3tc_flush_all' ) ) { |
| 40 |
w3tc_flush_all(); |
| 41 |
} |
| 42 |
|
| 43 |
if ( is_string( $location ) && function_exists( 'w3tc_flush_url' ) ) { |
| 44 |
w3tc_flush_url( $location ); |
| 45 |
} |
| 46 |
} |
| 47 |
/** |
| 48 |
* Should we early load the compatibility? |
| 49 |
* |
| 50 |
* @return bool Whether to load the compatibility or not. |
| 51 |
*/ |
| 52 |
public function should_load_early() { |
| 53 |
return true; |
| 54 |
} |
| 55 |
} |
| 56 |
|