function views_handler_filter_in_operator::query

3.x views_handler_filter_in_operator.inc views_handler_filter_in_operator::query()
2.x views_handler_filter_in_operator.inc views_handler_filter_in_operator::query()

Add this filter to the query.

Due to the nature of fapi, the value and the operator have an unintended level of indirection. You will find them in $this->operator and $this->value respectively.

Overrides views_handler_filter::query

1 call to views_handler_filter_in_operator::query()
views_handler_filter_entity_bundle::query in handlers/views_handler_filter_entity_bundle.inc
All entity types beside comment and taxonomy terms have a proper implement bundle, though these two need an additional join to node/vocab table to work as required.
4 methods override views_handler_filter_in_operator::query()
views_handler_filter_comment_user_uid::query in modules/comment/views_handler_filter_comment_user_uid.inc
Add this filter to the query.
views_handler_filter_entity_bundle::query in handlers/views_handler_filter_entity_bundle.inc
All entity types beside comment and taxonomy terms have a proper implement bundle, though these two need an additional join to node/vocab table to work as required.
views_handler_filter_node_uid_revision::query in modules/node/views_handler_filter_node_uid_revision.inc
Add this filter to the query.
views_handler_filter_term_node_tid_depth::query in modules/taxonomy/views_handler_filter_term_node_tid_depth.inc
Add this filter to the query.

File

handlers/views_handler_filter_in_operator.inc, line 354
Definition of views_handler_filter_in_operator.

Class

views_handler_filter_in_operator
Simple filter to handle matching of multiple options selectable via checkboxes

Code

function query() {
  $info = $this->operators();
  if (!empty($info[$this->operator]['method'])) {
    $this->{$info[$this->operator]['method']}();
  }
}