PluginProbe
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization / 4.2.9
Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization v4.2.9
4.2.13 4.2.12 4.2.11 4.2.10 4.2.9 4.2.8 4.2.7 4.2.6 4.2.5 2.5.5 2.5.6 2.5.7 3.0.0 3.0.1 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.11.0 3.11.1 3.11.2 3.11.3 3.12.0 3.12.1 All 134 releases
optimole-wp / inc / compatibilities / w3_total_cache.php

w3_total_cache.php in Optimole – Optimize Images | Convert WebP & AVIF | CDN & Lazy Load | Image Optimization 4.2.9, at inc/compatibilities/w3_total_cache.php

56 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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