You are here

function _weather_get_countries in Weather 5

Same name and namespace in other branches
  1. 5.6 icao_codes.inc \_weather_get_countries()
1 call to _weather_get_countries()
weather_custom_block in ./weather.module
Show a configuration page for a custom weather block

File

./icao_codes.inc, line 24

Code

function _weather_get_countries() {
  $icao_codes = _weather_setup_icao_codes();
  $result = array_keys($icao_codes);
  array_unshift($result, t('- None -'));
  return $result;
}