function countries_get_default_continents in Countries 7
Same name and namespace in other branches
- 8 countries.module \countries_get_default_continents()
- 7.2 countries.module \countries_get_default_continents()
Get the default continents. For internal use only.
See also
1 call to countries_get_default_continents()
- countries_get_continents in ./
countries.module - Get all continents.
File
- ./
countries.module, line 204
Code
function countries_get_default_continents() {
return array(
'AF' => t('Africa'),
'AS' => t('Asia'),
'EU' => t('Europe'),
'NA' => t('North America'),
'SA' => t('South America'),
'OC' => t('Oceania'),
'AN' => t('Antarctica'),
'UN' => t('Unknown'),
);
}