silverstripe-framework/search/filters/EndsWithFilter.php

32 lines
614 B
PHP

<?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()}$");
}
}
?>