You are here

function location_handler_field_location_country::option_definition in Location 6.3

Same name and namespace in other branches
  1. 7.5 handlers/location_handler_field_location_country.inc \location_handler_field_location_country::option_definition()
  2. 7.3 handlers/location_handler_field_location_country.inc \location_handler_field_location_country::option_definition()
  3. 7.4 handlers/location_handler_field_location_country.inc \location_handler_field_location_country::option_definition()

File

handlers/location_handler_field_location_country.inc, line 10
Country field handler.

Class

location_handler_field_location_country
@file Country field handler.

Code

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