w3tc_flush_objectcache

w3tc_flush_objectcache

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: w3-total-cache.2.7.0

do_action('w3tc_flush_objectcache') is found 1 times:

  • /CacheFlush_Locally.php line 39
    	function objectcache_flush( $extras = array() ) {
    		if ( isset( $extras['only'] ) && $extras['only'] != 'objectcache' )
    			return;
    
    		do_action( 'w3tc_flush_objectcache' );
    		$objectcache = Dispatcher::component( 'ObjectCache_WpObjectCache_Regular' );
    		$v = $objectcache->flush();
    
    		do_action( 'w3tc_flush_after_objectcache' );
    
    		return $v;