You are here

function uc_order_handler_filter_country::get_value_options in Ubercart 7.3

Overrides views_handler_filter_in_operator::get_value_options().

Overrides views_handler_filter_in_operator::get_value_options

File

uc_order/views/uc_order_handler_filter_country.inc, line 16
Views handler.

Class

uc_order_handler_filter_country
Filters by country code.

Code

function get_value_options() {
  if (!isset($this->value_options)) {
    $this->value_title = t('Country');
    $this->value_options = uc_country_option_list();
  }
}