function hook_countries_alter

7.x system.api.php hook_countries_alter(&$countries)

Alter the default country list.

Parameters

$countries: The associative array of countries keyed by ISO 3166-1 country code.

See also

country_get_list()

_country_get_predefined_list()

Related topics

1 invocation of hook_countries_alter()
country_get_list in drupal-7.x/includes/locale.inc
Get list of all predefined and custom countries.

File

drupal-7.x/modules/system/system.api.php, line 4622
Hooks provided by Drupal core and the System module.

Code

function hook_countries_alter(&$countries) {
  // Elbonia is now independent, so add it to the country list.
  $countries['EB'] = 'Elbonia';
}