silverstripe-framework/search/filters/ExactMatchFilter.php
Ingo Schommer 9f751829a6 (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@60211 467b73ca-7a2a-4603-9d3b-597d59a354a9
2008-08-09 04:53:34 +00:00

24 lines
480 B
PHP

<?php
/**
* Matches textual content with a columnname = 'keyword' construct
*
* @todo case sensitivity switch
* @todo documentation
*
* @package sapphire
* @subpackage search
*/
class ExactMatchFilter extends SearchFilter {
/**
* Applies an exact match (equals) on a field value.
*
* @return unknown
*/
public function apply(SQLQuery $query) {
$query = $this->applyRelation($query);
return $query->where("{$this->getName()} = '{$this->value}'");
}
}
?>