You are here

function location_province_list_ar in Location 7.3

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

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.ar.inc, line 20
Argentina.

Code

function location_province_list_ar() {
  return array(
    'A' => "Salta",
    'B' => "Buenos Aires",
    'C' => "Ciudad Autónoma de Buenos Aires (CABA)",
    'D' => "San Luis",
    'E' => "Entre Ríos",
    'F' => "La Rioja",
    'G' => "Santiago del Estero",
    'H' => "Chaco",
    'J' => "San Juan",
    'K' => "Catamarca",
    'L' => "La Pampa",
    'M' => "Mendoza",
    'N' => "Misiones",
    'P' => "Formosa",
    'Q' => "Neuquén",
    'R' => "Río Negro",
    'S' => "Santa Fe",
    'T' => "Tucumán",
    'U' => "Chubut",
    'V' => "Tierra del Fuego",
    'W' => "Corrientes",
    'X' => "Córdoba",
    'Y' => "Jujuy",
    'Z' => "Santa Cruz",
  );
}