public static CountryManager::getStandardList()
Get an array of all two-letter country code => country name pairs.
Return value
array An array of country code => country name pairs.
File
- core/lib/Drupal/Core/Locale/CountryManager.php, line 39
Class
- CountryManager
- Provides list of countries.
Namespace
Drupal\Core\Locale
Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | public static function getStandardList() { $countries = array ( 'AC' => t( 'Ascension Island' ), 'AD' => t( 'Andorra' ), 'AE' => t( 'United Arab Emirates' ), 'AF' => t( 'Afghanistan' ), 'AG' => t( 'Antigua and Barbuda' ), 'AI' => t( 'Anguilla' ), 'AL' => t( 'Albania' ), 'AM' => t( 'Armenia' ), 'AN' => t( 'Netherlands Antilles' ), 'AO' => t( 'Angola' ), 'AQ' => t( 'Antarctica' ), 'AR' => t( 'Argentina' ), 'AS' => t( 'American Samoa' ), 'AT' => t( 'Austria' ), 'AU' => t( 'Australia' ), 'AW' => t( 'Aruba' ), 'AX' => t( 'Åland Islands' ), 'AZ' => t( 'Azerbaijan' ), 'BA' => t( 'Bosnia and Herzegovina' ), 'BB' => t( 'Barbados' ), 'BD' => t( 'Bangladesh' ), 'BE' => t( 'Belgium' ), 'BF' => t( 'Burkina Faso' ), 'BG' => t( 'Bulgaria' ), 'BH' => t( 'Bahrain' ), 'BI' => t( 'Burundi' ), 'BJ' => t( 'Benin' ), 'BL' => t( 'Saint Barthélemy' ), 'BM' => t( 'Bermuda' ), 'BN' => t( 'Brunei' ), 'BO' => t( 'Bolivia' ), 'BQ' => t( 'Caribbean Netherlands' ), 'BR' => t( 'Brazil' ), 'BS' => t( 'Bahamas' ), 'BT' => t( 'Bhutan' ), 'BV' => t( 'Bouvet Island' ), 'BW' => t( 'Botswana' ), 'BY' => t( 'Belarus' ), 'BZ' => t( 'Belize' ), 'CA' => t( 'Canada' ), 'CC' => t( 'Cocos [Keeling] Islands' ), 'CD' => t( 'Congo - Kinshasa' ), 'CF' => t( 'Central African Republic' ), 'CG' => t( 'Congo - Brazzaville' ), 'CH' => t( 'Switzerland' ), 'CI' => t( 'Côte d’Ivoire' ), 'CK' => t( 'Cook Islands' ), 'CL' => t( 'Chile' ), 'CM' => t( 'Cameroon' ), 'CN' => t( 'China' ), 'CO' => t( 'Colombia' ), 'CP' => t( 'Clipperton Island' ), 'CR' => t( 'Costa Rica' ), 'CU' => t( 'Cuba' ), 'CV' => t( 'Cape Verde' ), 'CW' => t( 'Curaçao' ), 'CX' => t( 'Christmas Island' ), 'CY' => t( 'Cyprus' ), 'CZ' => t( 'Czech Republic' ), 'DE' => t( 'Germany' ), 'DG' => t( 'Diego Garcia' ), 'DJ' => t( 'Djibouti' ), 'DK' => t( 'Denmark' ), 'DM' => t( 'Dominica' ), 'DO' => t( 'Dominican Republic' ), 'DZ' => t( 'Algeria' ), 'EA' => t( 'Ceuta and Melilla' ), 'EC' => t( 'Ecuador' ), 'EE' => t( 'Estonia' ), 'EG' => t( 'Egypt' ), 'EH' => t( 'Western Sahara' ), 'ER' => t( 'Eritrea' ), 'ES' => t( 'Spain' ), 'ET' => t( 'Ethiopia' ), 'FI' => t( 'Finland' ), 'FJ' => t( 'Fiji' ), 'FK' => t( 'Falkland Islands' ), 'FM' => t( 'Micronesia' ), 'FO' => t( 'Faroe Islands' ), 'FR' => t( 'France' ), 'GA' => t( 'Gabon' ), 'GB' => t( 'United Kingdom' ), 'GD' => t( 'Grenada' ), 'GE' => t( 'Georgia' ), 'GF' => t( 'French Guiana' ), 'GG' => t( 'Guernsey' ), 'GH' => t( 'Ghana' ), 'GI' => t( 'Gibraltar' ), 'GL' => t( 'Greenland' ), 'GM' => t( 'Gambia' ), 'GN' => t( 'Guinea' ), 'GP' => t( 'Guadeloupe' ), 'GQ' => t( 'Equatorial Guinea' ), 'GR' => t( 'Greece' ), 'GS' => t( 'South Georgia and the South Sandwich Islands' ), 'GT' => t( 'Guatemala' ), 'GU' => t( 'Guam' ), 'GW' => t( 'Guinea-Bissau' ), 'GY' => t( 'Guyana' ), 'HK' => t( 'Hong Kong SAR China' ), 'HM' => t( 'Heard Island and McDonald Islands' ), 'HN' => t( 'Honduras' ), 'HR' => t( 'Croatia' ), 'HT' => t( 'Haiti' ), 'HU' => t( 'Hungary' ), 'IC' => t( 'Canary Islands' ), 'ID' => t( 'Indonesia' ), 'IE' => t( 'Ireland' ), 'IL' => t( 'Israel' ), 'IM' => t( 'Isle of Man' ), 'IN' => t( 'India' ), 'IO' => t( 'British Indian Ocean Territory' ), 'IQ' => t( 'Iraq' ), 'IR' => t( 'Iran' ), 'IS' => t( 'Iceland' ), 'IT' => t( 'Italy' ), 'JE' => t( 'Jersey' ), 'JM' => t( 'Jamaica' ), 'JO' => t( 'Jordan' ), 'JP' => t( 'Japan' ), 'KE' => t( 'Kenya' ), 'KG' => t( 'Kyrgyzstan' ), 'KH' => t( 'Cambodia' ), 'KI' => t( 'Kiribati' ), 'KM' => t( 'Comoros' ), 'KN' => t( 'Saint Kitts and Nevis' ), 'KP' => t( 'North Korea' ), 'KR' => t( 'South Korea' ), 'KW' => t( 'Kuwait' ), 'KY' => t( 'Cayman Islands' ), 'KZ' => t( 'Kazakhstan' ), 'LA' => t( 'Laos' ), 'LB' => t( 'Lebanon' ), 'LC' => t( 'Saint Lucia' ), 'LI' => t( 'Liechtenstein' ), 'LK' => t( 'Sri Lanka' ), 'LR' => t( 'Liberia' ), 'LS' => t( 'Lesotho' ), 'LT' => t( 'Lithuania' ), 'LU' => t( 'Luxembourg' ), 'LV' => t( 'Latvia' ), 'LY' => t( 'Libya' ), 'MA' => t( 'Morocco' ), 'MC' => t( 'Monaco' ), 'MD' => t( 'Moldova' ), 'ME' => t( 'Montenegro' ), 'MF' => t( 'Saint Martin' ), 'MG' => t( 'Madagascar' ), 'MH' => t( 'Marshall Islands' ), 'MK' => t( 'Macedonia' ), 'ML' => t( 'Mali' ), 'MM' => t( 'Myanmar [Burma]' ), 'MN' => t( 'Mongolia' ), 'MO' => t( 'Macau SAR China' ), 'MP' => t( 'Northern Mariana Islands' ), 'MQ' => t( 'Martinique' ), 'MR' => t( 'Mauritania' ), 'MS' => t( 'Montserrat' ), 'MT' => t( 'Malta' ), 'MU' => t( 'Mauritius' ), 'MV' => t( 'Maldives' ), 'MW' => t( 'Malawi' ), 'MX' => t( 'Mexico' ), 'MY' => t( 'Malaysia' ), 'MZ' => t( 'Mozambique' ), 'NA' => t( 'Namibia' ), 'NC' => t( 'New Caledonia' ), 'NE' => t( 'Niger' ), 'NF' => t( 'Norfolk Island' ), 'NG' => t( 'Nigeria' ), 'NI' => t( 'Nicaragua' ), 'NL' => t( 'Netherlands' ), 'NO' => t( 'Norway' ), 'NP' => t( 'Nepal' ), 'NR' => t( 'Nauru' ), 'NU' => t( 'Niue' ), 'NZ' => t( 'New Zealand' ), 'OM' => t( 'Oman' ), 'PA' => t( 'Panama' ), 'PE' => t( 'Peru' ), 'PF' => t( 'French Polynesia' ), 'PG' => t( 'Papua New Guinea' ), 'PH' => t( 'Philippines' ), 'PK' => t( 'Pakistan' ), 'PL' => t( 'Poland' ), 'PM' => t( 'Saint Pierre and Miquelon' ), 'PN' => t( 'Pitcairn Islands' ), 'PR' => t( 'Puerto Rico' ), 'PS' => t( 'Palestinian Territories' ), 'PT' => t( 'Portugal' ), 'PW' => t( 'Palau' ), 'PY' => t( 'Paraguay' ), 'QA' => t( 'Qatar' ), 'QO' => t( 'Outlying Oceania' ), 'RE' => t( 'Réunion' ), 'RO' => t( 'Romania' ), 'RS' => t( 'Serbia' ), 'RU' => t( 'Russia' ), 'RW' => t( 'Rwanda' ), 'SA' => t( 'Saudi Arabia' ), 'SB' => t( 'Solomon Islands' ), 'SC' => t( 'Seychelles' ), 'SD' => t( 'Sudan' ), 'SE' => t( 'Sweden' ), 'SG' => t( 'Singapore' ), 'SH' => t( 'Saint Helena' ), 'SI' => t( 'Slovenia' ), 'SJ' => t( 'Svalbard and Jan Mayen' ), 'SK' => t( 'Slovakia' ), 'SL' => t( 'Sierra Leone' ), 'SM' => t( 'San Marino' ), 'SN' => t( 'Senegal' ), 'SO' => t( 'Somalia' ), 'SR' => t( 'Suriname' ), 'SS' => t( 'South Sudan' ), 'ST' => t( 'São Tomé and Príncipe' ), 'SV' => t( 'El Salvador' ), 'SX' => t( 'Sint Maarten' ), 'SY' => t( 'Syria' ), 'SZ' => t( 'Swaziland' ), 'TA' => t( 'Tristan da Cunha' ), 'TC' => t( 'Turks and Caicos Islands' ), 'TD' => t( 'Chad' ), 'TF' => t( 'French Southern Territories' ), 'TG' => t( 'Togo' ), 'TH' => t( 'Thailand' ), 'TJ' => t( 'Tajikistan' ), 'TK' => t( 'Tokelau' ), 'TL' => t( 'Timor-Leste' ), 'TM' => t( 'Turkmenistan' ), 'TN' => t( 'Tunisia' ), 'TO' => t( 'Tonga' ), 'TR' => t( 'Turkey' ), 'TT' => t( 'Trinidad and Tobago' ), 'TV' => t( 'Tuvalu' ), 'TW' => t( 'Taiwan' ), 'TZ' => t( 'Tanzania' ), 'UA' => t( 'Ukraine' ), 'UG' => t( 'Uganda' ), 'UM' => t( 'U.S. Outlying Islands' ), 'US' => t( 'United States' ), 'UY' => t( 'Uruguay' ), 'UZ' => t( 'Uzbekistan' ), 'VA' => t( 'Vatican City' ), 'VC' => t( 'Saint Vincent and the Grenadines' ), 'VE' => t( 'Venezuela' ), 'VG' => t( 'British Virgin Islands' ), 'VI' => t( 'U.S. Virgin Islands' ), 'VN' => t( 'Vietnam' ), 'VU' => t( 'Vanuatu' ), 'WF' => t( 'Wallis and Futuna' ), 'WS' => t( 'Samoa' ), 'XK' => t( 'Kosovo' ), 'YE' => t( 'Yemen' ), 'YT' => t( 'Mayotte' ), 'ZA' => t( 'South Africa' ), 'ZM' => t( 'Zambia' ), 'ZW' => t( 'Zimbabwe' ), ); // Sort the list. natcasesort( $countries ); return $countries ; } |
Please login to continue.