function views_handler_filter_numeric::op_not_regex
File
-
handlers/
views_handler_filter_numeric.inc, line 339
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');
}