/** * Interface iQueryModifier * Defines the API to tweak queries (e.g. translate data on the fly) * * @copyright Copyright (C) 2010-2012 Combodo SARL * @license http://opensource.org/licenses/AGPL-3.0 */ interface iQueryModifier { public function __construct(); public function GetFieldExpression(QueryBuilderContext &$oBuild, $sClass, $sAttCode, $sColId, Expression $oFieldSQLExp, SQLQuery &$oSelect); } ?>