| 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 |
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( |
| 30 |
'optml_settings_updated', |
| 31 |
function () { |
| 32 |
if ( function_exists( 'w3tc_flush_all' ) ) { |
| 33 |
w3tc_flush_all(); |
| 34 |
} |
| 35 |
} |
| 36 |
); |
| 37 |
} |
| 38 |
|
| 39 |
/** |
| 40 |
* Should we early load the compatibility? |
| 41 |
* |
| 42 |
* @return bool Whether to load the compatibility or not. |
| 43 |
*/ |
| 44 |
public function should_load_early() { |
| 45 |
return true; |
| 46 |
} |
| 47 |
} |
| 48 |
|
| 49 |
|