Interface: Doctrine_Query_Filter_Interface

Source Location: /Doctrine/Query/Filter/Interface.php

Interface Doctrine_Query_Filter_Interface

Interface Overview

Doctrine_Query_Filter_Interface

Located in /Doctrine/Query/Filter/Interface.php [line 33]



		
				Author(s):
		
		
		
Information Tags:
Version:  $Revision$
Link:  www.phpdoctrine.com
Since:  1.0
License:  LGPL

Methods

[ Top ]
Method Summary
void   postQuery()   postQuery
void   preQuery()   preQuery

[ Top ]
Methods
postQuery  [line 56]

  void postQuery( Doctrine_Query $query  )

postQuery

Method for listening the postQuery method of Doctrine_Query and to hook into the query building procedure, doing any custom / specialized post query procedures (for example logging) that are neccessary.

Parameters:
Doctrine_Query   $query: 

API Tags:
Access:  public


[ Top ]
preQuery  [line 45]

  void preQuery( Doctrine_Query $query  )

preQuery

Method for listening the preQuery method of Doctrine_Query and hooking into the query building procedure, doing any custom / specialized query building procedures that are neccessary.

Parameters:
Doctrine_Query   $query: 

API Tags:
Access:  public


[ Top ]