You are here

function location_province_list_numeric_my in Location 7.3

Returns an associative array of states/territories by number.

File

supported/location.my.inc, line 35
Malaysia.

Code

function location_province_list_numeric_my() {
  return array(
    '001' => "Johor",
    '002' => "Kedah",
    '003' => "Kelantan",
    '004' => "Malacca",
    '005' => "Negeri Sembilan",
    '006' => "Pahang",
    '007' => "Perak",
    '008' => "Perlis",
    '009' => "Pulau Pinang",
    '010' => "Selangor",
    '011' => "Terengganu",
    '012' => "Sabah",
    '013' => "Sarawak",
    '014' => "Kuala Lumpur",
    '015' => "Labuan",
    '016' => "Putrajaya",
  );
}