You are here

function location_province_list_numeric_nz in Location 7.3

Provinces keyed by number.

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

Currently not being used, but may be in order to be compatible with CiviCRM.

File

supported/location.nz.inc, line 69
New Zealand.

Code

function location_province_list_numeric_nz() {
  return array(
    3966 => 'Auckland',
    3967 => 'Bay of Plenty',
    3968 => 'Canterbury',
    3969 => 'Gisborne',
    3970 => 'Hawke\'s Bay',
    3971 => 'Manawatu-Wanganui',
    3972 => 'Marlborough',
    3973 => 'Nelson',
    3974 => 'Northland',
    3975 => 'Otago',
    3976 => 'Southland',
    3977 => 'Taranaki',
    3978 => 'Tasman',
    3979 => 'Waikato',
    3980 => 'Wellington',
    3981 => 'West Coast',
  );
}