function views_handler_filter_in_operator::operator_options

3.x views_handler_filter_in_operator.inc views_handler_filter_in_operator::operator_options($which = 'title')
2.x views_handler_filter_in_operator.inc views_handler_filter_in_operator::operator_options($which = 'title')

Build strings from the operators() for 'select' options

Overrides views_handler_filter::operator_options

1 method overrides 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

File

handlers/views_handler_filter_in_operator.inc, line 134
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 operator_options($which = 'title') {
  $options = array();
  foreach ($this->operators() as $id => $info) {
    $options[$id] = $info[$which];
  }

  return $options;
}