* The Third Party integration with the Avada plugin.
* @subpackage LiteSpeed_Cache/thirdparty
namespace LiteSpeed\Thirdparty;
defined( 'WPINC' ) || exit;
* Integration for Avada cache flushing.
* Detects if Avada is installed.
public static function detect() {
if ( ! defined( 'AVADA_VERSION' ) ) {
add_action( 'update_option_avada_dynamic_css_posts', __CLASS__ . '::flush' );
add_action( 'update_option_fusion_options', __CLASS__ . '::flush' );
public static function flush() {
do_action( 'litespeed_purge_all', '3rd avada' );