silverstripe-framework/search/filters/StartsWithFilter.php

25 lines
412 B
PHP
Raw Normal View History

<?php
/**
* @package framework
* @subpackage search
*/
/**
* Matches textual content with a substring match from the beginning
* of the string.
2014-08-15 08:53:05 +02:00
*
* <code>
* "abcdefg" => "defg" # false
* "abcdefg" => "abcd" # true
* </code>
2014-08-15 08:53:05 +02:00
*
* @package framework
* @subpackage search
*/
class StartsWithFilter extends PartialMatchFilter {
protected function getMatchPattern($value) {
return "$value%";
}
}