silverstripe-framework/ORM/Queries/SQLConditionGroup.php

23 lines
567 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\ORM\Queries;
/**
* Represents a where condition that is dynamically generated. Maybe be stored
* within a list of conditions, altered, and be allowed to affect the result
* of the parent sql query during future execution.
2014-08-15 08:53:05 +02:00
*
* @package framework
* @subpackage orm
*/
interface SQLConditionGroup {
2014-08-15 08:53:05 +02:00
/**
* Determines the resulting SQL along with parameters for the group
2014-08-15 08:53:05 +02:00
*
* @param array $parameters Out list of parameters
* @return string The complete SQL string for this item
*/
function conditionSQL(&$parameters);
}