silverstripe-framework/search/filters/SubstringFilter.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
351 B
PHP

<?php
/**
* @package sapphire
* @subpackage search
*/
/**
* Uses a substring match against content in column rows.
*
* @package sapphire
* @subpackage search
*/
class SubstringFilter extends SearchFilter {
public function apply(SQLQuery $query) {
return $query->where("LOCATE('{$this->getValue()}', {$this->getName()}) != 0");
}
}
?>