function StringFilter::opStartsWith
Same name in other branches
- 9 core/modules/views/src/Plugin/views/filter/StringFilter.php \Drupal\views\Plugin\views\filter\StringFilter::opStartsWith()
- 10 core/modules/views/src/Plugin/views/filter/StringFilter.php \Drupal\views\Plugin\views\filter\StringFilter::opStartsWith()
- 11.x core/modules/views/src/Plugin/views/filter/StringFilter.php \Drupal\views\Plugin\views\filter\StringFilter::opStartsWith()
1 method overrides StringFilter::opStartsWith()
- Combine::opStartsWith in core/
modules/ views/ src/ Plugin/ views/ filter/ Combine.php
File
-
core/
modules/ views/ src/ Plugin/ views/ filter/ StringFilter.php, line 364
Class
- StringFilter
- Basic textfield filter to handle string filtering commands including equality, like, not like, etc.
Namespace
Drupal\views\Plugin\views\filterCode
protected function opStartsWith($field) {
$this->query
->addWhere($this->options['group'], $field, $this->connection
->escapeLike($this->value) . '%', 'LIKE');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.