You are here

protected function StringFilter::opEndsWith in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/filter/StringFilter.php \Drupal\views\Plugin\views\filter\StringFilter::opEndsWith()
1 method overrides StringFilter::opEndsWith()
Combine::opEndsWith in core/modules/views/src/Plugin/views/filter/Combine.php

File

core/modules/views/src/Plugin/views/filter/StringFilter.php, line 307
Contains \Drupal\views\Plugin\views\filter\StringFilter.

Class

StringFilter
Basic textfield filter to handle string filtering commands including equality, like, not like, etc.

Namespace

Drupal\views\Plugin\views\filter

Code

protected function opEndsWith($field) {
  $this->query
    ->addWhere($this->options['group'], $field, '%' . db_like($this->value), 'LIKE');
}