FOF30\Model\DataModel\Filter\AbstractFilter::outside PHP Метод

outside() абстрактный публичный Метод

Perform an outside limits match (usually: search for a value outside an area or a date outside a preset period). When $include is true the condition tested is: (VALUE <= $from) || (VALUE >= $to) When $include is false the condition tested is: (VALUE < $from) || (VALUE > $to)
abstract public outside ( mixed $from, mixed $to, boolean $include = false ) : string
$from mixed The lowest value of the excluded range
$to mixed The highest value of the excluded range
$include boolean Should we include the boundaries in the search?
Результат string The SQL where clause for this search
    public abstract function outside($from, $to, $include = false);