WP_Super_Cache_Rest_Get_Status::add_cache_disabled_status()protectedWPSCache 1.0

Method of the class: WP_Super_Cache_Rest_Get_Status{}

No Hooks.

Return

null. Nothing (null).

Usage

// protected - for code of main (parent) or child class
$result = $this->add_cache_disabled_status( $status );
$status(array) (required) (passed by reference — &)
-

WP_Super_Cache_Rest_Get_Status::add_cache_disabled_status() code WPSCache 1.11.0

protected function add_cache_disabled_status( & $status ) {
	global $wp_cache_config_file;

	if ( ! is_writeable_ACLSafe( $wp_cache_config_file ) ) {
		$status['cache_disabled'] = true;
	}
}