| @@ -4,9 +4,9 @@ | ||
| 4 | 4 | use Elementor\Core\Base\Module as BaseModule; |
| 5 | 5 | use Elementor\Plugin; |
| 6 | 6 | |
| 7 | 7 | if ( ! defined( 'ABSPATH' ) ) { |
| 8 | - exit; // Exit if accessed directly. | |
| 8 | + exit; // Exit if accessed directly | |
| 9 | 9 | } |
| 10 | 10 | |
| 11 | 11 | class Module extends BaseModule { |
| 12 | 12 | |
| @@ -27,9 +27,9 @@ | ||
| 27 | 27 | } |
| 28 | 28 | return false; |
| 29 | 29 | } |
| 30 | 30 | |
| 31 | - private function performance_lab_get_webp_src( $attachment_id, $size, $url ) { | |
| 31 | + private function performance_lab_get_webp_src( $attachment_id, $size = 'full', $url ) { | |
| 32 | 32 | $image_object = wp_get_attachment_image_src( $attachment_id, $size ); |
| 33 | 33 | $image_src = call_user_func( self::PERFORMANCE_LAB_FUNCTION_NAME, $image_object[0], 'webp', $attachment_id ); |
| 34 | 34 | if ( ! empty( $image_src ) ) { |
| 35 | 35 | return $image_src; |
| @@ -50,7 +50,21 @@ | ||
| 50 | 50 | if ( $this->is_performance_lab_is_active() ) { |
| 51 | 51 | add_filter( 'elementor/files/css/property', function( $value, $css_property, $matches ) { |
| 52 | 52 | return $this->replace_css_with_webp( $value, $css_property, $matches ); |
| 53 | 53 | }, 10, 3 ); |
| 54 | + } | |
| 55 | + | |
| 56 | + if ( is_admin() ) { | |
| 57 | + add_action( 'activated_plugin', function( $plugin ) { | |
| 58 | + if ( 'performance-lab/load.php' === $plugin ) { | |
| 59 | + Plugin::$instance->files_manager->clear_cache(); | |
| 60 | + } | |
| 61 | + } ); | |
| 62 | + | |
| 63 | + add_action( 'deactivated_plugin', function( $plugin ) { | |
| 64 | + if ( 'performance-lab/load.php' === $plugin ) { | |
| 65 | + Plugin::$instance->files_manager->clear_cache(); | |
| 66 | + } | |
| 67 | + } ); | |
| 54 | 68 | } |
| 55 | 69 | } |
| 56 | 70 | } |