You are here

public function views_handler_filter_numeric::op_not_regex in Views (for Drupal 7) 7.3

File

handlers/views_handler_filter_numeric.inc, line 339
Definition of views_handler_filter_numeric.

Class

views_handler_filter_numeric
Simple filter to handle greater than/less than filters

Code

public function op_not_regex($field) {
  $this->query
    ->add_where($this->options['group'], $field, $this->value['value'], 'NOT RLIKE');
}