You are here

function location_province_list_au in Location 7.3

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

Provinces.

Returns an associative array of states/territories where -> the keys are integers starting from 1 -> the values are the English names for those states/territories

The states are grouped together at the beginning of the array and sorted alphabetically.

The territories are grouped together at the end of the array and sorted alphabetically.

File

supported/location.au.inc, line 542
Australia.

Code

function location_province_list_au() {
  return array(
    'ACT' => 'Australian Capital Territory',
    'NSW' => 'New South Wales',
    'NT' => 'Northern Territory',
    'QLD' => 'Queensland',
    'SA' => 'South Australia',
    'TAS' => 'Tasmania',
    'VIC' => 'Victoria',
    'WA' => 'Western Australia',
  );
}