gyro/core/lib/interfaces/idbquerymodifier.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Base interface for all query modifying classes like filters, sorters, and alike 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface IDBQueryModifier { 00009 /** 00010 * Do what should be done 00011 * 00012 * @param DataObjectBase The current query to be modified 00013 */ 00014 public function apply($query); 00015 }