You are here

function views_handler_filter_in_operator::get_value_options in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_filter_in_operator.inc \views_handler_filter_in_operator::get_value_options()
  2. 7.3 handlers/views_handler_filter_in_operator.inc \views_handler_filter_in_operator::get_value_options()

Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.

This can use a guard to be used to reduce database hits as much as possible.

2 calls to views_handler_filter_in_operator::get_value_options()
views_handler_filter_in_operator::admin_summary in handlers/views_handler_filter_in_operator.inc
Display the filter on the administrative summary
views_handler_filter_in_operator::value_form in handlers/views_handler_filter_in_operator.inc
Provide a form for setting options.
13 methods override views_handler_filter_in_operator::get_value_options()
views_handler_filter_aggregator_category_cid::get_value_options in modules/aggregator/views_handler_filter_aggregator_category_cid.inc
Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.
views_handler_filter_file_status::get_value_options in modules/system/views_handler_filter_file_status.inc
Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.
views_handler_filter_locale_group::get_value_options in modules/locale/views_handler_filter_locale_group.inc
Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.
views_handler_filter_locale_language::get_value_options in modules/locale/views_handler_filter_locale_language.inc
Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.
views_handler_filter_locale_version::get_value_options in modules/locale/views_handler_filter_locale_version.inc
Child classes should be used to override this function and set the 'value options', unless 'options callback' is defined as a valid function or static public method to generate these values.

... See full list

File

handlers/views_handler_filter_in_operator.inc, line 26

Class

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

Code

function get_value_options() {
  if (isset($this->value_options)) {
    return;
  }
  if (isset($this->definition['options callback']) && is_callable($this->definition['options callback'])) {
    $this->value_options = call_user_func($this->definition['options callback']);
  }
  else {
    $this->value_options = array(
      t('Yes'),
      t('No'),
    );
  }
}