You are here

function google_geocode_country_list in Location 5

Same name and namespace in other branches
  1. 5.3 geocoding/google.inc \google_geocode_country_list()
  2. 6.3 geocoding/google.inc \google_geocode_country_list()
  3. 7.5 geocoding/google.inc \google_geocode_country_list()
  4. 7.3 geocoding/google.inc \google_geocode_country_list()
  5. 7.4 geocoding/google.inc \google_geocode_country_list()

File

geocoding/google.inc, line 4

Code

function google_geocode_country_list() {
  static $countries;
  if (!count($countries)) {
    $countries = array(
      'at',
      'be',
      'br',
      'ca',
      'ch',
      'cz',
      'de',
      'es',
      'fr',
      'hu',
      'ie',
      'in',
      'it',
      'li',
      'lu',
      'mc',
      'nl',
      'pl',
      'pt',
      'sg',
      'tw',
      'us',
      'uk',
    );
  }
  return $countries;
}