silverstripe-framework/search/filters/NegationFilter.php
Ingo Schommer 75f2cf2654 (merged from branches/roa. use "svn log -c <changeset> -g <module-svn-path>" for detailed commit message)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60232 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-08-09 06:40:50 +00:00

21 lines
343 B
PHP

<?php
/**
* @package search
* @subpackage filters
*/
/**
* Matches on rows where the field is not equal to the given value.
*
* @package search
* @subpackage filters
*/
class NegationFilter extends SearchFilter {
public function apply(SQLQuery $query) {
return $query->where("{$this->name} != '{$this->getValue()}'");
}
}
?>