You are here

function location_province_list_bt in Location 7.3

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

Returns an associative array of states/territories.

File

supported/location.bt.inc, line 11
Bhutan.

Code

function location_province_list_bt() {
  return array(
    'BUM' => "Bumthang",
    'CHU' => "Chukha",
    'DAG' => "Dagana",
    'GAS' => "Gasa",
    'HAA' => "Haa",
    'LHU' => "Lhuntse",
    'MON' => "Mongar",
    'PAR' => "Paro",
    'PEM' => "Pemagatshel",
    'PUN' => "Punakha",
    'SJO' => "Samdrup Jongkhar",
    'SAT' => "Samtse",
    'SAR' => "Sarpang",
    'THI' => "Thimphu",
    'TRG' => "Trashigang",
    'TRY' => "Trashiyangste",
    'TRO' => "Trongsa",
    'TSI' => "Tsirang",
    'WPH' => "Wangdue Phodrang",
    'ZHE' => "Zhemgang",
  );
}