silverstripe-framework/search/filters/StartsWithFilter.php
Sam Minnee a74c97f564 BUGFIX: Made search filters db agnostic
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@76371 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-05-07 06:00:41 +00:00

35 lines
701 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($this->getDbName() . " LIKE '" . Convert::raw2sql($this->getValue()) . "%'");
}
public function isEmpty() {
return $this->getValue() == null || $this->getValue() == '';
}
}
?>