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

23 lines
400 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($value) {
return "{$this->name}='$value'";
}
}
?>