You are here

function i18nviews_handler_filter_field_list::get_value_options in Internationalization Views 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

includes/i18nviews_handler_filter_field_list.inc, line 9

Class

i18nviews_handler_filter_field_list
List field filter handler.

Code

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

  // Translate list options
  if (($translate = i18n_field_type_info($field['type'], 'translate_options')) && !empty($this->value_options)) {
    $this->value_options = $translate($field);
  }
}