w3tc_flush_dbcache

w3tc_flush_dbcache

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

See hook in core

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

do_action('w3tc_flush_dbcache') is found 1 times:

  • /CacheFlush_Locally.php line 24
    	function dbcache_flush( $extras = array() ) {
    		if ( isset( $extras['only'] ) && $extras['only'] != 'dbcache' )
    			return;
    
    		do_action( 'w3tc_flush_dbcache' );
    
    		if ( !method_exists( $GLOBALS['wpdb'], 'flush_cache' ) )
    			return false;
    
    		return $GLOBALS['wpdb']->flush_cache( $extras );
    	}