* "abcdefg" => "defg" # true * "abcdefg" => "abcd" # false * * * @package framework * @subpackage search */ class EndsWithFilter extends SearchFilter { /** * Applies a match on the trailing characters of a field value. * * @return unknown */ public function apply(DataQuery $query) { $this->model = $query->applyRelation($this->relation); $query->where($this->getDbName() . " LIKE '%" . Convert::raw2sql($this->getValue()) . "'"); } public function isEmpty() { return $this->getValue() == null || $this->getValue() == ''; } }