uc_order_handler_filter_country.inc 425 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * @file
  4. * Views handler.
  5. */
  6. /**
  7. * Filters by country code.
  8. */
  9. class uc_order_handler_filter_country extends views_handler_filter_in_operator {
  10. /**
  11. * Overrides views_handler_filter_in_operator::get_value_options().
  12. */
  13. function get_value_options() {
  14. if (!isset($this->value_options)) {
  15. $this->value_title = t('Country');
  16. $this->value_options = uc_country_option_list();
  17. }
  18. }
  19. }