function String::op_equal in Views (for Drupal 7) 8.3
1 method overrides String::op_equal()
- Combine::op_equal in lib/
Drupal/ views/ Plugin/ views/ filter/ Combine.php
File
- lib/
Drupal/ views/ Plugin/ views/ filter/ String.php, line 265 - Definition of Drupal\views\Plugin\views\filter\String.
Class
- String
- Basic textfield filter to handle string filtering commands including equality, like, not like, etc.
Namespace
Drupal\views\Plugin\views\filterCode
function op_equal($field) {
$this->query
->add_where($this->options['group'], $field, $this->value, $this
->operator());
}