|
Server : LiteSpeed System : Linux server51.dnsbootclub.com 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64 User : nandedex ( 1060) PHP Version : 8.1.33 Disable Function : NONE Directory : /usr/src/litespeed-wp-plugin/1.9.1.1/litespeed-cache/inc/ |
<?php
/**
* The core plugin class.
*
* This is used to define internationalization, admin-specific hooks, and
* public-facing site hooks.
*
* Also maintains the unique identifier of this plugin as well as the current
* version of the plugin.
*
* @since 1.0.0
* @since 1.5 Moved into /inc
* @package LiteSpeed_Cache
* @subpackage LiteSpeed_Cache/inc
* @author LiteSpeed Technologies <info@litespeedtech.com>
*/
class LiteSpeed_Cache
{
private static $_instance ;
const PLUGIN_NAME = 'litespeed-cache' ;
const PLUGIN_VERSION = '1.9.1.1' ;
const PAGE_EDIT_HTACCESS = 'lscache-edit-htaccess' ;
const NONCE_NAME = 'LSCWP_NONCE' ;
const ACTION_KEY = 'LSCWP_CTRL' ;
const ACTION_DISMISS = 'dismiss' ;
const ACTION_SAVE_HTACCESS = 'save-htaccess' ;
const ACTION_SAVE_SETTINGS = 'save-settings' ;
const ACTION_SAVE_SETTINGS_NETWORK = 'save-settings-network' ;
const ACTION_PURGE_ERRORS = 'PURGE_ERRORS' ;
const ACTION_PURGE_PAGES = 'PURGE_PAGES' ;
const ACTION_PURGE_CSSJS = 'PURGE_CSSJS' ;
const ACTION_PURGE_BY = 'PURGE_BY' ;
const ACTION_PURGE_FRONT = 'PURGE_FRONT' ;
const ACTION_PURGE_ALL = 'PURGE_ALL' ;
const ACTION_PURGE_EMPTYCACHE = 'PURGE_EMPTYCACHE' ;
const ACTION_QS_PURGE = 'PURGE' ;
const ACTION_QS_PURGE_SINGLE = 'PURGESINGLE' ;
const ACTION_QS_SHOW_HEADERS = 'SHOWHEADERS' ;
const ACTION_QS_PURGE_ALL = 'purge_all' ;
const ACTION_QS_PURGE_EMPTYCACHE = 'empty_all' ;
const ACTION_QS_NOCACHE = 'NOCACHE' ;
const ACTION_CRAWLER_GENERATE_FILE = 'crawler-generate-file' ;
const ACTION_CRAWLER_RESET_POS = 'crawler-reset-pos' ;
const ACTION_CRAWLER_CRON_ENABLE = 'crawler-cron-enable' ;
const ACTION_DO_CRAWL = 'do-crawl' ;
const ACTION_BLACKLIST_SAVE = 'blacklist-save' ;
const ACTION_FRONT_PURGE = 'front-purge' ;
const ACTION_FRONT_EXCLUDE = 'front-exclude' ;
const ACTION_DB_OPTIMIZE = 'db_optimize' ;
const ACTION_LOG = 'log' ;
const ACTION_IMPORT = 'import' ;
const ACTION_PURGE = 'purge' ;
const ACTION_MEDIA = 'media' ;
const ACTION_IAPI = 'iapi' ;
const ACTION_CDN = 'cdn' ;
const ACTION_REPORT = 'report' ;
const ACTION_SAPI_PASSIVE_CALLBACK = 'sapi_passive_callback' ;
const ACTION_SAPI_AGGRESSIVE_CALLBACK = 'sapi_aggressive_callback' ;
const WHM_TRANSIENT = 'lscwp_whm_install' ;
const WHM_TRANSIENT_VAL = 'whm_install' ;
const HEADER_DEBUG = 'X-LiteSpeed-Debug' ;
protected static $_debug_show_header = false ;
private $footer_comment = '' ;
/**
* Define the core functionality of the plugin.
*
* Set the plugin name and the plugin version that can be used throughout the plugin.
* Load the dependencies, define the locale, and set the hooks for the admin area and
* the public-facing side of the site.
*
* @since 1.0.0
*/
private function __construct()
{
LiteSpeed_Cache_Config::get_instance() ;
// Check if debug is on
if ( defined( 'LITESPEED_ON' ) ) {
$should_debug = intval(self::config(LiteSpeed_Cache_Config::OPID_DEBUG)) ;
if ( $should_debug == LiteSpeed_Cache_Config::VAL_ON || ($should_debug == LiteSpeed_Cache_Config::VAL_ON2 && LiteSpeed_Cache_Router::is_admin_ip()) ) {
LiteSpeed_Cache_Log::init() ;
}
// Load third party detection if lscache enabled.
include_once LSCWP_DIR . 'thirdparty/lscwp-registry-3rd.php' ;
}
/**
* This needs to be before activation because admin-rules.class.php need const `LSCWP_CONTENT_FOLDER`
* @since 1.9.1 Moved up
*/
define( 'LSCWP_CONTENT_FOLDER', str_replace( home_url( '/' ), '', WP_CONTENT_URL ) ) ; // `wp-content`
define( 'LSWCP_PLUGIN_URL', plugin_dir_url( dirname( __FILE__ ) ) ) ;// Full URL path '//example.com/wp-content/plugins/litespeed-cache/'
// Register plugin activate/deactivate/uninstall hooks
// NOTE: this can't be moved under after_setup_theme, otherwise activation will be bypassed somehow
if( is_admin() || defined( 'LITESPEED_CLI' ) ) {
$plugin_file = LSCWP_DIR . 'litespeed-cache.php' ;
register_activation_hook($plugin_file, array('LiteSpeed_Cache_Activation', 'register_activation' )) ;
register_deactivation_hook($plugin_file, array('LiteSpeed_Cache_Activation', 'register_deactivation' )) ;
register_uninstall_hook($plugin_file, 'LiteSpeed_Cache_Activation::uninstall_litespeed_cache') ;
}
add_action( 'after_setup_theme', array( $this, 'init' ) ) ;
// Check if there is a purge request in queue
if ( $purge_queue = get_option( LiteSpeed_Cache_Purge::PURGE_QUEUE ) ) {
@header( $purge_queue ) ;
LiteSpeed_Cache_Log::debug( 'Purge Queue found&sent: ' . $purge_queue ) ;
delete_option( LiteSpeed_Cache_Purge::PURGE_QUEUE ) ;
}
/**
* Added hook before init
* @since 1.6.6
*/
do_action( 'litespeed_before_init' ) ;
/**
* Preload ESI functionality for ESI request uri recovery
* @since 1.8.1
*/
if ( ! LiteSpeed_Cache_Router::is_ajax() && LiteSpeed_Cache_Router::esi_enabled() ) {
LiteSpeed_Cache_ESI::get_instance() ;
}
}
/**
* The plugin initializer.
*
* This function checks if the cache is enabled and ready to use, then determines what actions need to be set up based on the type of user and page accessed. Output is buffered if the cache is enabled.
*
* NOTE: WP user doesn't init yet
*
* @since 1.0.0
* @access public
*/
public function init()
{
/**
* Added hook before init
* @since 1.6.6
*/
do_action( 'litespeed_init' ) ;
if ( ! self::config( LiteSpeed_Cache_Config::OPID_HEARTBEAT ) ) {
add_action( 'init', 'LiteSpeed_Cache_Log::disable_heartbeat', 1 ) ;
}
if( is_admin() ) {
LiteSpeed_Cache_Admin::get_instance() ;
}
if ( ! defined( 'LITESPEED_ON' ) || ! defined( 'LSCACHE_ADV_CACHE' ) || ! LSCACHE_ADV_CACHE ) {
return ;
}
LiteSpeed_Cache_Router::get_instance()->is_crawler_role_simulation() ;
ob_start( array( $this, 'send_headers_force' ) ) ;
add_action( 'shutdown', array( $this, 'send_headers' ), 0 ) ;
add_action( 'wp_footer', 'LiteSpeed_Cache::footer_hook' ) ;
/**
* Check lazy lib request in the very beginning
* @since 1.4
* Note: this should be before optimizer to avoid lazyload lib catched wrongly
*/
LiteSpeed_Cache_Media::get_instance() ;
// Check minify file request in the very beginning
LiteSpeed_Cache_Optimize::get_instance() ;
/**
* Register vary filter
* @since 1.6.2
*/
LiteSpeed_Cache_Control::get_instance() ;
// 1. Init vary
// 2. Init cacheable status
LiteSpeed_Cache_Vary::get_instance() ;
// Hook cdn for attachements
LiteSpeed_Cache_CDN::get_instance() ;
// Load public hooks
$this->load_public_actions() ;
// load cron tasks
LiteSpeed_Cache_Task::get_instance() ;
// Load 3rd party hooks
add_action( 'wp_loaded', array( $this, 'load_thirdparty' ), 2 ) ;
// load litespeed actions
if ( $action = LiteSpeed_Cache_Router::get_action() ) {
$this->proceed_action( $action ) ;
}
// Load frontend GUI
LiteSpeed_Cache_GUI::get_instance() ;
}
/**
* Run frontend actions
*
* @since 1.1.0
* @access public
*/
public function proceed_action( $action )
{
$msg = false ;
// handle actions
switch ( $action ) {
case LiteSpeed_Cache::ACTION_QS_PURGE:
LiteSpeed_Cache_Purge::set_purge_related() ;
break;
case self::ACTION_QS_SHOW_HEADERS:
self::$_debug_show_header = true ;
break;
case LiteSpeed_Cache::ACTION_QS_PURGE_SINGLE:
LiteSpeed_Cache_Purge::set_purge_single() ;
break;
case LiteSpeed_Cache::ACTION_CRAWLER_GENERATE_FILE:
LiteSpeed_Cache_Crawler::get_instance()->generate_sitemap() ;
LiteSpeed_Cache_Admin::redirect() ;
break;
case LiteSpeed_Cache::ACTION_CRAWLER_RESET_POS:
LiteSpeed_Cache_Crawler::get_instance()->reset_pos() ;
LiteSpeed_Cache_Admin::redirect() ;
break;
case LiteSpeed_Cache::ACTION_CRAWLER_CRON_ENABLE:
LiteSpeed_Cache_Task::enable() ;
break;
// Handle the ajax request to proceed crawler manually by admin
case LiteSpeed_Cache::ACTION_DO_CRAWL:
LiteSpeed_Cache_Crawler::crawl_data( true ) ;
break ;
case LiteSpeed_Cache::ACTION_BLACKLIST_SAVE:
LiteSpeed_Cache_Crawler::get_instance()->save_blacklist() ;
$msg = __( 'Crawler blacklist is saved.', 'litespeed-cache' ) ;
break ;
case LiteSpeed_Cache::ACTION_PURGE_FRONT:
LiteSpeed_Cache_Purge::purge_front() ;
$msg = __( 'Notified LiteSpeed Web Server to purge the front page.', 'litespeed-cache' ) ;
break ;
case LiteSpeed_Cache::ACTION_PURGE_PAGES:
LiteSpeed_Cache_Purge::purge_pages() ;
$msg = __( 'Notified LiteSpeed Web Server to purge pages.', 'litespeed-cache' ) ;
break ;
case LiteSpeed_Cache::ACTION_PURGE_CSSJS:
LiteSpeed_Cache_Purge::purge_cssjs() ;
$msg = __( 'Notified LiteSpeed Web Server to purge CSS/JS entries.', 'litespeed-cache' ) ;
break ;
case LiteSpeed_Cache::ACTION_PURGE_ERRORS:
LiteSpeed_Cache_Purge::purge_errors() ;
$msg = __( 'Notified LiteSpeed Web Server to purge error pages.', 'litespeed-cache' ) ;
break ;
case LiteSpeed_Cache::ACTION_PURGE_ALL:
case LiteSpeed_Cache::ACTION_QS_PURGE_ALL:
LiteSpeed_Cache_Purge::purge_all() ;
$msg = __( 'Notified LiteSpeed Web Server to purge all caches.', 'litespeed-cache' ) ;
break;
case LiteSpeed_Cache::ACTION_PURGE_EMPTYCACHE:
case LiteSpeed_Cache::ACTION_QS_PURGE_EMPTYCACHE:
define( 'LSWCP_EMPTYCACHE', true ) ;// clear all sites caches
LiteSpeed_Cache_Purge::purge_all() ;
$msg = __( 'Notified LiteSpeed Web Server to purge everything.', 'litespeed-cache' ) ;
break;
case LiteSpeed_Cache::ACTION_FRONT_PURGE:
// redirect inside
LiteSpeed_Cache_Purge::frontend_purge() ;
break ;
case LiteSpeed_Cache::ACTION_FRONT_EXCLUDE:
// redirect inside
LiteSpeed_Cache_Config::frontend_save() ;
break ;
case LiteSpeed_Cache::ACTION_PURGE_BY:
LiteSpeed_Cache_Purge::get_instance()->purge_list() ;
$msg = __( 'Notified LiteSpeed Web Server to purge the list.', 'litespeed-cache' ) ;
break;
case LiteSpeed_Cache::ACTION_DISMISS:// Even its from ajax, we don't need to register wp ajax callback function but directly use our action
LiteSpeed_Cache_GUI::dismiss() ;
break ;
case LiteSpeed_Cache::ACTION_DB_OPTIMIZE:
$msg = LiteSpeed_Cache_Admin_Optimize::run_db_clean() ;
break ;
case LiteSpeed_Cache::ACTION_SAPI_PASSIVE_CALLBACK:
LiteSpeed_Cache_Admin_API::sapi_passive_callback() ;
break ;
case LiteSpeed_Cache::ACTION_SAPI_AGGRESSIVE_CALLBACK:
LiteSpeed_Cache_Admin_API::sapi_aggressive_callback() ;
break ;
case LiteSpeed_Cache::ACTION_MEDIA:
$msg = LiteSpeed_Cache_Media::handler() ;
break ;
case LiteSpeed_Cache::ACTION_PURGE:
$msg = LiteSpeed_Cache_Purge::handler() ;
break ;
case LiteSpeed_Cache::ACTION_IAPI:
$msg = LiteSpeed_Cache_Admin_API::handler() ;
break ;
case LiteSpeed_Cache::ACTION_CDN:
$msg = LiteSpeed_Cache_CDN::handler() ;
break ;
case LiteSpeed_Cache::ACTION_LOG:
$msg = LiteSpeed_Cache_Log::handler() ;
break ;
case LiteSpeed_Cache::ACTION_REPORT:
$msg = LiteSpeed_Cache_Admin_Report::handler() ;
break ;
case LiteSpeed_Cache::ACTION_IMPORT:
$msg = LiteSpeed_Cache_Import::handler() ;
break ;
default:
break ;
}
if ( $msg && ! LiteSpeed_Cache_Router::is_ajax() ) {
LiteSpeed_Cache_Admin_Display::add_notice( LiteSpeed_Cache_Admin_Display::NOTICE_GREEN, $msg ) ;
LiteSpeed_Cache_Admin::redirect() ;
return ;
}
}
/**
* Callback used to call the detect third party action.
*
* The detect action is used by third party plugin integration classes to determine if they should add the rest of their hooks.
*
* @since 1.0.5
* @access public
*/
public function load_thirdparty()
{
do_action( 'litespeed_cache_api_load_thirdparty' ) ;
}
/**
* Register all of the hooks related to the all users
* of the plugin.
*
* @since 1.0.0
* @access private
*/
private function load_public_actions()
{
//register purge actions
$purge_post_events = array(
'edit_post',
'save_post',
'deleted_post',
'trashed_post',
'delete_attachment',
// 'clean_post_cache', // This will disable wc's not purge product when stock status not change setting
) ;
foreach ( $purge_post_events as $event ) {
// this will purge all related tags
add_action( $event, 'LiteSpeed_Cache_Purge::purge_post', 10, 2 ) ;
}
add_action( 'wp_update_comment_count', 'LiteSpeed_Cache_Purge::purge_feeds' ) ;
// register recent posts widget tag before theme renders it to make it work
add_filter( 'widget_posts_args', 'LiteSpeed_Cache_Tag::add_widget_recent_posts' ) ;
// 301 redirect hook
add_filter( 'wp_redirect', 'LiteSpeed_Cache_Control::check_redirect', 10, 2 ) ;
}
/**
* A shortcut to get the LiteSpeed_Cache_Config config value
*
* @since 1.0.0
* @access public
* @param string $opt_id An option ID if getting an option.
* @return the option value
*/
public static function config( $opt_id )
{
return LiteSpeed_Cache_Config::get_instance()->get_option( $opt_id ) ;
}
/**
* Mark wp_footer called
*
* @since 1.3
* @access public
*/
public static function footer_hook()
{
LiteSpeed_Cache_Log::debug( 'Footer hook called' ) ;
if ( ! defined( 'LITESPEED_FOOTER_CALLED' ) ) {
define( 'LITESPEED_FOOTER_CALLED', true ) ;
}
}
/**
* Tigger coment info display hook
*
* @since 1.3
* @access private
*/
private function _check_is_html( $buffer = null )
{
if ( ! defined( 'LITESPEED_FOOTER_CALLED' ) ) {
LiteSpeed_Cache_Log::debug2( 'CHK html bypass: miss footer const' ) ;
return ;
}
if ( defined( 'DOING_AJAX' ) ) {
LiteSpeed_Cache_Log::debug2( 'CHK html bypass: doing ajax' ) ;
return ;
}
if ( defined( 'DOING_CRON' ) ) {
LiteSpeed_Cache_Log::debug2( 'CHK html bypass: doing cron' ) ;
return ;
}
if ( $_SERVER[ 'REQUEST_METHOD' ] !== 'GET' ) {
LiteSpeed_Cache_Log::debug2( 'CHK html bypass: not get method ' . $_SERVER[ 'REQUEST_METHOD' ] ) ;
return ;
}
if ( $buffer === null ) {
$buffer = ob_get_contents() ;
}
// double check to make sure it is a html file
if ( strlen( $buffer ) > 300 ) {
$buffer = substr( $buffer, 0, 300 ) ;
}
if ( strstr( $buffer, '<!--' ) !== false ) {
$buffer = preg_replace( '|<!--.*?-->|s', '', $buffer ) ;
}
$buffer = trim( $buffer ) ;
$is_html = stripos( $buffer, '<html' ) === 0 || stripos( $buffer, '<!DOCTYPE' ) === 0 ;
if ( ! $is_html ) {
LiteSpeed_Cache_Log::debug( 'Footer check failed: ' . ob_get_level() . '-' . substr( $buffer, 0, 100 ) ) ;
return ;
}
LiteSpeed_Cache_Log::debug( 'Footer check passed' ) ;
if ( ! defined( 'LITESPEED_IS_HTML' ) ) {
define( 'LITESPEED_IS_HTML', true ) ;
}
}
/**
* For compatibility with those plugins have 'Bad' logic that forced all buffer output even it is NOT their buffer :(
*
* Usually this is called after send_headers() if following orignal WP process
*
* @since 1.1.5
* @access public
* @param string $buffer
* @return string
*/
public function send_headers_force( $buffer )
{
$this->_check_is_html( $buffer ) ;
// Image lazy load check
$buffer = LiteSpeed_Cache_Media::finalize( $buffer ) ;
/**
* Clean wrapper mainly for esi block
* NOTE: this needs to be before optimizer to avoid wrapper being removed
* @since 1.4
*/
$buffer = LiteSpeed_Cache_GUI::finalize( $buffer ) ;
$buffer = LiteSpeed_Cache_Optimize::finalize( $buffer ) ;
$buffer = LiteSpeed_Cache_CDN::finalize( $buffer ) ;
$this->send_headers( true ) ;
if ( $this->footer_comment ) {
$buffer .= $this->footer_comment ;
}
LiteSpeed_Cache_Log::debug( "End response\n--------------------------------------------------------------------------------\n" ) ;
return $buffer ;
}
/**
* Sends the headers out at the end of processing the request.
*
* This will send out all LiteSpeed Cache related response headers needed for the post.
*
* @since 1.0.5
* @access public
* @param boolean $is_forced If the header is sent following our normal finalizing logic
*/
public function send_headers( $is_forced = false )
{
// Make sure header output only run once
if ( ! defined( 'LITESPEED_DID_' . __FUNCTION__ ) ) {
define( 'LITESPEED_DID_' . __FUNCTION__, true ) ;
}
else {
return ;
}
$this->_check_is_html() ;
// NOTE: cache ctrl output needs to be done first, as currently some varies are added in 3rd party hook `litespeed_cache_api_control`.
LiteSpeed_Cache_Control::finalize() ;
$vary_header = LiteSpeed_Cache_Vary::finalize() ;
// If is not cacheable but Admin QS is `purge` or `purgesingle`, `tag` still needs to be generated
$tag_header = LiteSpeed_Cache_Tag::output() ;
if ( LiteSpeed_Cache_Control::is_cacheable() && ! $tag_header ) {
LiteSpeed_Cache_Control::set_nocache( 'empty tag header' ) ;
}
// NOTE: `purge` output needs to be after `tag` output as Admin QS may need to send `tag` header
$purge_header = LiteSpeed_Cache_Purge::output() ;
// generate `control` header in the end in case control status is changed by other headers.
$control_header = LiteSpeed_Cache_Control::output() ;
// Init comment info
$running_info_showing = ( defined( 'LITESPEED_IS_HTML' ) && LITESPEED_IS_HTML ) || ( defined( 'LSCACHE_IS_ESI' ) && LSCACHE_IS_ESI ) ;
if ( defined( 'LSCACHE_ESI_SILENCE' ) ) {
$running_info_showing = false ;
LiteSpeed_Cache_Log::debug( 'ESI silence' ) ;
}
if ( $running_info_showing ) {
// Give one more break to avoid ff crash
if ( ! defined( 'LSCACHE_IS_ESI' ) ) {
$this->footer_comment .= "\n" ;
}
$this->footer_comment .= sprintf(
'<!-- %1$s %2$s by LiteSpeed Cache %4$s on %3$s -->',
defined( 'LSCACHE_IS_ESI' ) ? 'Block' : 'Page',
LiteSpeed_Cache_Control::is_cacheable() ? 'generated' : 'uncached',
date( 'Y-m-d H:i:s', time() + LITESPEED_TIME_OFFSET ),
self::PLUGIN_VERSION
) ;
}
// send Control header
if ( $control_header ) {
@header( $control_header ) ;
if ( defined( 'LSCWP_LOG' ) ) {
LiteSpeed_Cache_Log::debug( $control_header ) ;
if ( $running_info_showing ) {
$this->footer_comment .= "\n<!-- " . $control_header . " -->" ;
}
}
}
// send PURGE header
if ( $purge_header ) {
@header( $purge_header ) ;
if ( defined( 'LSCWP_LOG' ) ) {
LiteSpeed_Cache_Log::debug( $purge_header ) ;
if ( $running_info_showing ) {
$this->footer_comment .= "\n<!-- " . $purge_header . " -->" ;
}
}
}
// send Vary header
if ( $vary_header ) {
@header( $vary_header ) ;
if ( defined( 'LSCWP_LOG' ) ) {
LiteSpeed_Cache_Log::debug( $vary_header ) ;
if ( $running_info_showing ) {
$this->footer_comment .= "\n<!-- " . $vary_header . " -->" ;
}
}
}
// Admin QS show header action
if ( self::$_debug_show_header ) {
$debug_header = self::HEADER_DEBUG . ': ' ;
if ( $control_header ) {
$debug_header .= $control_header . '; ' ;
}
if ( $purge_header ) {
$debug_header .= $purge_header . '; ' ;
}
if ( $tag_header ) {
$debug_header .= $tag_header . '; ' ;
}
if ( $vary_header ) {
$debug_header .= $vary_header . '; ' ;
}
@header( $debug_header ) ;
LiteSpeed_Cache_Log::debug( $debug_header ) ;
}
else {
// Control header
if ( LiteSpeed_Cache_Control::is_cacheable() && $tag_header ) {
@header( $tag_header ) ;
if ( defined( 'LSCWP_LOG' ) ) {
LiteSpeed_Cache_Log::debug( $tag_header ) ;
if ( $running_info_showing ) {
$this->footer_comment .= "\n<!-- " . $tag_header . " -->" ;
}
}
}
}
// Object cache comment
if ( $running_info_showing && defined( 'LSCWP_LOG' ) && defined( 'LSCWP_OBJECT_CACHE' ) && method_exists( 'WP_Object_Cache', 'debug' ) ) {
$this->footer_comment .= "\n<!-- Object Cache " . WP_Object_Cache::get_instance()->debug() . " -->" ;
}
if ( $is_forced ) {
LiteSpeed_Cache_Log::debug( '--forced--' ) ;
}
}
/**
* Deprecated calls for backward compatibility to v1.1.2.2
*/
public function purge_post( $id )
{
litespeed_purge_single_post( $id ) ;
}
/**
* Deprecated calls for backward compatibility to v1.1.2.2
*/
public function purge_all()
{
LiteSpeed_Cache_API::purge_all() ;
}
/**
* Get the current instance object.
*
* @since 1.1.0
* @access public
* @return Current class instance.
*/
public static function get_instance()
{
if ( ! isset(self::$_instance) ) {
self::$_instance = new self() ;
}
return self::$_instance ;
}
}