| 7 locale.inc | country_get_list() |
| 8 system.module | country_get_list() |
Get list of all predefined and custom countries.
Return value
An array of all country code => country name pairs.
2 calls to country_get_list()
File
- includes/
locale.inc, line 2342 - Administration functions for locale.module.
Code
function country_get_list() {
include_once DRUPAL_ROOT . '/includes/iso.inc';
$countries = _country_get_predefined_list();
// Allow other modules to modify the country list.
drupal_alter('countries', $countries);
return $countries;
}
Login or register to post comments