silverstripe-framework/search/filters/StartsWithFilter.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

32 lines
586 B
PHP

<?php
/**
* @package sapphire
* @subpackage search
*/
/**
* Matches textual content with a substring match from the beginning
* of the string.
*
* <code>
* "abcdefg" => "defg" # false
* "abcdefg" => "abcd" # true
* </code>
*
* @package sapphire
* @subpackage search
*/
class StartsWithFilter extends SearchFilter {
/**
* Applies a substring match on a field value.
*
* @return unknown
*/
public function apply(SQLQuery $query) {
$query = $this->applyRelation($query);
$query->where("LOCATE('{$this->getValue()}', {$this->getName()}) = 1");
}
}
?>