You are here

protected function StringFilter::opNotStartsWith in Drupal 10

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

File

core/modules/views/src/Plugin/views/filter/StringFilter.php, line 395

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 opNotStartsWith($field) {
  $operator = $this
    ->getConditionOperator('NOT LIKE');
  $this->query
    ->addWhere($this->options['group'], $field, $this->connection
    ->escapeLike($this->value) . '%', $operator);
}