function views_handler_filter_string::op_not_regex
1 method overrides views_handler_filter_string::op_not_regex()
File
-
handlers/
views_handler_filter_string.inc, line 384
Class
- views_handler_filter_string
- Basic textfield filter to handle string filtering commands including equality, like, not like, etc.
Code
public function op_not_regex($field) {
$this->query
->add_where($this->options['group'], $field, $this->value, 'NOT RLIKE');
}