You are here

function views_handler_filter_in_operator::query in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 handlers/views_handler_filter_in_operator.inc \views_handler_filter_in_operator::query()
  2. 7.3 handlers/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

3 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_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 355

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']}();
  }
}