protected function Numeric::opRegex

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/filter/Numeric.php, line 278
Definition of Drupal\views\Plugin\views\filter\Numeric.

Class

Numeric
Simple filter to handle greater than/less than filters

Namespace

Drupal\views\Plugin\views\filter

Code

protected function opRegex($field) {
  $this->query
    ->addWhere($this->options['group'], $field, $this->value, 'RLIKE');
}