function views_handler_filter_in_operator::operator_options
Build strings from the operators() for 'select' options.
Overrides views_handler_filter::operator_options
2 methods override views_handler_filter_in_operator::operator_options()
- views_handler_filter_term_node_tid_depth::operator_options in modules/
taxonomy/ views_handler_filter_term_node_tid_depth.inc - Build strings from the operators() for 'select' options.
- views_handler_filter_term_node_tid_depth_join::operator_options in modules/
taxonomy/ views_handler_filter_term_node_tid_depth_join.inc - Build strings from the operators() for 'select' options.
File
-
handlers/
views_handler_filter_in_operator.inc, line 153
Class
- views_handler_filter_in_operator
- Simple filter to handle matching of multiple options using checkboxes.
Code
public function operator_options($which = 'title') {
$options = array();
foreach ($this->operators() as $id => $info) {
$options[$id] = $info[$which];
}
return $options;
}