You are here

function location_province_list_be in Location 7.3

Same name and namespace in other branches
  1. 5.3 supported/location.be.inc \location_province_list_be()
  2. 5 supported/location.be.inc \location_province_list_be()
  3. 6.3 supported/location.be.inc \location_province_list_be()
  4. 7.5 supported/location.be.inc \location_province_list_be()
  5. 7.4 supported/location.be.inc \location_province_list_be()

Returns an associative array of states/territories.

File

supported/location.be.inc, line 11
Belgium.

Code

function location_province_list_be() {
  return array(
    'VAN' => "Antwerpen",
    'VBR' => "Vlaams Brabant",
    'VLI' => "Limburg",
    'VOV' => "Oost-Vlaanderen",
    'VWV' => "West-Vlaanderen",
    'WBR' => "Brabant Wallon",
    'WHT' => "Hainaut",
    'WLG' => "Liege",
    'WLX' => "Luxembourg",
    'WNA' => "Namur",
    // While technically not a province, Brussels-Capital Region is needed here
    // because some places would be completely without a province if we did not
    // include it.
    // See http://drupal.org/node/228766 and http://drupal.org/node/291590.
    'BRU' => "Brussels",
  );
}