You are here

function location_handler_sort_location_country::option_definition in Location 6.3

Same name and namespace in other branches
  1. 7.3 handlers/location_handler_sort_location_country.inc \location_handler_sort_location_country::option_definition()

File

handlers/location_handler_sort_location_country.inc, line 5

Class

location_handler_sort_location_country

Code

function option_definition() {
  $options = parent::option_definition();
  $options['country_sort'] = array(
    'default' => 'name',
  );
  return $options;
}