silverstripe-framework/search/filters/EndsWithFilter.php

35 lines
709 B
PHP
Raw Normal View History

<?php
/**
* @package sapphire
* @subpackage search
*/
/**
* Matches textual content with a substring match on a text fragment leading
* to the end of the string.
*
* <code>
* "abcdefg" => "defg" # true
* "abcdefg" => "abcd" # false
* </code>
*
* @package sapphire
* @subpackage search
*/
class EndsWithFilter extends SearchFilter {
/**
* Applies a match on the trailing characters of a field value.
*
* @return unknown
*/
public function apply(SQLQuery $query) {
$query = $this->applyRelation($query);
$query->where($this->getDbName(), "RLIKE", "{$this->getValue()}$");
}
public function isEmpty() {
return $this->getValue() == null || $this->getValue() == '';
}
}
?>