gyro/core/lib/interfaces/idataobjectqueryhook.cls.php
Go to the documentation of this file.00001 <?php 00002 /** 00003 * Interface for classes that hook into query building on dataobject 00004 * 00005 * @author Gerd Riesselmann 00006 * @ingroup Interfaces 00007 */ 00008 interface IDataObjectQueryHook { 00009 /** 00010 * Modify the query given. Hok should take class of query (DBQueryInsert, DBQuerySelect etc) into consideration 00011 * 00012 * @param IDBQuery $query 00013 */ 00014 public function configure_query($query); 00015 }