You are here

public function views_handler_filter_field_list_boolean::get_value_options in Views (for Drupal 7) 7.3

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.

Return value

Return the stored values in $this->value_options if someone expects it.

Overrides views_handler_filter_field_list::get_value_options

File

modules/field/views_handler_filter_field_list_boolean.inc, line 18
Definition of views_handler_filter_field_list_boolean.

Class

views_handler_filter_field_list_boolean
Filter handler for boolean fields.

Code

public function get_value_options() {
  $field = field_info_field($this->definition['field_name']);
  $value_options = list_allowed_values($field);

  // Boolean fields have an option for using the label as the 'on' value. This
  // results in there being no label values in the allows values array.
  // If this is the case, we need to provide the labels.
  $filtered = array_filter($value_options);
  if (empty($filtered)) {

    // We can't provide the label in the same way the FieldAPI formatter does,
    // as these are different on each instance, and we may be operating on
    // more than one bundle.
    $value_options[0] = t('Off');
    $value_options[1] = t('On');
  }
  $this->value_options = $value_options;
}