function views_handler_filter_in_operator::query
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.
5 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.
- views_handler_filter_term_node_tid_depth_join::query in modules/
taxonomy/ views_handler_filter_term_node_tid_depth_join.inc - Add this filter to the query.
File
-
handlers/
views_handler_filter_in_operator.inc, line 389
Class
- views_handler_filter_in_operator
- Simple filter to handle matching of multiple options using checkboxes.
Code
public function query() {
$info = $this->operators();
if (!empty($info[$this->operator]['method'])) {
$this->{$info[$this->operator]['method']}();
}
}