WP_Super_Cache_Rest_Get_Settings::get_is_submit_enabled()protectedWPSCache 1.0

Method of the class: WP_Super_Cache_Rest_Get_Settings{}

No Hooks.

Return

true|false.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_is_submit_enabled();

WP_Super_Cache_Rest_Get_Settings::get_is_submit_enabled() code WPSCache 1.12.0

protected function get_is_submit_enabled() {
	global $wp_cache_config_file;
	return is_writeable_ACLSafe( $wp_cache_config_file );
}