w3tc_db_update

w3tc_db_update

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

See hook in core

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

do_action('w3tc_db_update') is found 2 times:

  • /DbCache_WpdbLegacy.php line 277
    	 *
    	 * @return mixed The result of the update operation.
    	 */
    	public function update( $table, $data, $where, $format = null, $where_format = null ) {
    		do_action( 'w3tc_db_update', $table, $data, $where, $format, $where_format );
    		return $this->active_processor->update( $table, $data, $where, $format, $where_format );
    	}
    
    	/**
    	 * Deletes data from a database table.
    	 *
    
  • /DbCache_WpdbNew.php line 269
    	 *
    	 * @return mixed The result of the update operation.
    	 */
    	public function update( $table, $data, $where, $format = null, $where_format = null ) {
    		do_action( 'w3tc_db_update', $table, $data, $where, $format, $where_format );
    		return $this->active_processor->update( $table, $data, $where, $format, $where_format );
    	}
    
    	/**
    	 * Deletes data from a specified table.
    	 *