1 views_handler_filter_combine.inc views_handler_filter_combine::op_not($field)

Overrides views_handler_filter_string::op_not

File

core/modules/views/handlers/views_handler_filter_combine.inc, line 154
Definition of views_handler_filter_combine.

Class

views_handler_filter_combine
Filter handler which allows to search on multiple fields.

Code

function op_not($field) {
  $placeholder = $this->placeholder();
  $this->query->add_where_expression($this->options['group'], "$field NOT LIKE $placeholder", array($placeholder => '%' . db_like($this->value) . '%'));
}