/home/sitetest/makie/homedir/public_html/wp-content/plugins/litespeed-cache/src
NameSizeModeActions
cdn/-0755rm
data_structure/-0755rm
activation.cls.php178550644editdlrm
admin-display.cls.php492740644editdlrm
admin-settings.cls.php113830644editdlrm
admin.cls.php51670644editdlrm
api.cls.php106870644editdlrm
avatar.cls.php88900644editdlrm
base.cls.php354100644editdlrm
cdn.cls.php163000644editdlrm
cloud.cls.php673750644editdlrm
conf.cls.php199990644editdlrm
control.cls.php249330644editdlrm
core.cls.php215190644editdlrm
crawler-map.cls.php198940644editdlrm
crawler.cls.php432080644editdlrm
css.cls.php156370644editdlrm
data.cls.php168860644editdlrm
data.upgrade.func.php31470644editdlrm
db-optm.cls.php105890644editdlrm
debug2.cls.php145100644editdlrm
doc.cls.php41640644editdlrm
error.cls.php75600644editdlrm
esi.cls.php278340644editdlrm
file.cls.php108230644editdlrm
gui.cls.php373790644editdlrm
health.cls.php28990644editdlrm
htaccess.cls.php245780644editdlrm
img-optm.cls.php666930644editdlrm
import.cls.php43950644editdlrm
import.preset.cls.php56330644editdlrm
lang.cls.php154210644editdlrm
localization.cls.php35220644editdlrm
media.cls.php413370644editdlrm
metabox.cls.php54440644editdlrm
object-cache-wp.cls.php252590644editdlrm
object-cache.cls.php207880644editdlrm
object.lib.php136290644editdlrm
optimize.cls.php395910644editdlrm
optimizer.cls.php96400644editdlrm
placeholder.cls.php145270644editdlrm
purge.cls.php347650644editdlrm
report.cls.php62660644editdlrm
rest.cls.php88440644editdlrm
root.cls.php143230644editdlrm
router.cls.php210620644editdlrm
str.cls.php32260644editdlrm
tag.cls.php94810644editdlrm
task.cls.php62790644editdlrm
tool.cls.php43180644editdlrm
ucss.cls.php147190644editdlrm
utility.cls.php222850644editdlrm
vary.cls.php206860644editdlrm
vpi.cls.php95880644editdlrm
Edit: /home/sitetest/makie/homedir/public_html/wp-content/plugins/litespeed-cache/src/api.cls.php (10687B)
cls( 'Admin_Display' ), 'enroll' ), 10, 4 ); add_action( 'litespeed_build_switch', array( $this->cls( 'Admin_Display' ), 'build_switch' ) ); // Action `litespeed_settings_content` // Action `litespeed_settings_tab` } /** * Disable All * * Disables all LiteSpeed Cache features with a given reason. * * @since 2.9.7.2 * @access public * @param string $reason The reason for disabling all features. */ public function disable_all( $reason ) { do_action( 'litespeed_debug', '[API] Disabled_all due to ' . $reason ); ! defined( 'LITESPEED_DISABLE_ALL' ) && define( 'LITESPEED_DISABLE_ALL', true ); } /** * Append commenter vary * * Adds commenter vary to the cache vary cookies. * * @since 3.0 * @access public */ public static function vary_append_commenter() { Vary::cls()->append_commenter(); } /** * Check if is from Cloud * * Checks if the current request originates from QUIC.cloud. * * @since 4.2 * @access public * @return bool True if from QUIC.cloud, false otherwise. */ public function is_from_cloud() { return $this->cls( 'Cloud' )->is_from_cloud(); } /** * Purge post * * Purges the cache for a specific post. * * @since 3.0 * @access public * @param int $pid Post ID to purge. */ public function purge_post( $pid ) { $this->cls( 'Purge' )->purge_post( $pid ); } /** * Purge URL * * Purges the cache for a specific URL. * * @since 3.0 * @access public * @param string $url URL to purge. */ public function purge_url( $url ) { $this->cls( 'Purge' )->purge_url( $url ); } /** * Set cacheable * * Marks the current request as cacheable. * * @since 3.0 * @access public * @param string|bool $reason Optional reason for setting cacheable. */ public function set_cacheable( $reason = false ) { $this->cls( 'Control' )->set_cacheable( $reason ); } /** * Check ESI enabled * * Returns whether ESI is enabled. * * @since 3.0 * @access public * @return bool True if ESI is enabled, false otherwise. */ public function esi_enabled() { return $this->cls( 'Router' )->esi_enabled(); } /** * Get TTL * * Retrieves the cache TTL (time to live). * * @since 3.0 * @access public * @return int Cache TTL value. */ public function get_ttl() { return $this->cls( 'Control' )->get_ttl(); } /** * Generate ESI block URL * * Generates a URL for an ESI block. * * @since 3.0 * @access public * @param string $block_id ESI block ID. * @param string $wrapper Wrapper identifier. * @param array $params Parameters for the ESI block. * @param string $control Cache control settings. * @param bool $silence Silence output flag. * @param bool $preserved Preserved flag. * @param bool $svar Server variable flag. * @param array $inline_param Inline parameters. * @return string ESI block URL. */ public function sub_esi_block( $block_id, $wrapper, $params = array(), $control = 'private,no-vary', $silence = false, $preserved = false, $svar = false, $inline_param = array() ) { return $this->cls( 'ESI' )->sub_esi_block( $block_id, $wrapper, $params, $control, $silence, $preserved, $svar, $inline_param ); } /** * Set and sync conf * * Updates and synchronizes configuration settings. * * @since 7.2 * @access public * @param bool|array $the_matrix Configuration data to update. */ public function save_conf( $the_matrix = false ) { $this->cls( 'Conf' )->update_confs( $the_matrix ); } }