silverstripe-framework/search/filters/StartsWithFilter.php

39 lines
727 B
PHP
Raw Normal View History

<?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(sprintf(
"LOCATE('%s', %s) = 1",
Convert::raw2sql($this->getValue()),
$this->getDbName()
));
}
public function isEmpty() {
return $this->getValue() == null || $this->getValue() == '';
}
}
?>