us.states.inc.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /**
  3. * FormIt
  4. *
  5. * Copyright 2009-2012 by Shaun McCormick <shaun@modx.com>
  6. *
  7. * FormIt is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU General Public License as published by the Free
  9. * Software Foundation; either version 2 of the License, or (at your option) any
  10. * later version.
  11. *
  12. * FormIt is distributed in the hope that it will be useful, but WITHOUT ANY
  13. * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  14. * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License along with
  17. * FormIt; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
  18. * Suite 330, Boston, MA 02111-1307 USA
  19. *
  20. * @package formit
  21. */
  22. /**
  23. * Array of U.S. States
  24. * @package formit
  25. */
  26. return array(
  27. 'AL' => 'Alabama',
  28. 'AK' => 'Alaska',
  29. 'AZ' => 'Arizona',
  30. 'AR' => 'Arkansas',
  31. 'CA' => 'California',
  32. 'CO' => 'Colorado',
  33. 'CT' => 'Connecticut',
  34. 'DE' => 'Delaware',
  35. 'DC' => 'District Of Columbia',
  36. 'FL' => 'Florida',
  37. 'GA' => 'Georgia',
  38. 'HI' => 'Hawaii',
  39. 'ID' => 'Idaho',
  40. 'IL' => 'Illinois',
  41. 'IN' => 'Indiana',
  42. 'IA' => 'Iowa',
  43. 'KS' => 'Kansas',
  44. 'KY' => 'Kentucky',
  45. 'LA' => 'Louisiana',
  46. 'ME' => 'Maine',
  47. 'MD' => 'Maryland',
  48. 'MA' => 'Massachusetts',
  49. 'MI' => 'Michigan',
  50. 'MN' => 'Minnesota',
  51. 'MS' => 'Mississippi',
  52. 'MO' => 'Missouri',
  53. 'MT' => 'Montana',
  54. 'NE' => 'Nebraska',
  55. 'NV' => 'Nevada',
  56. 'NH' => 'New Hampshire',
  57. 'NJ' => 'New Jersey',
  58. 'NM' => 'New Mexico',
  59. 'NY' => 'New York',
  60. 'NC' => 'North Carolina',
  61. 'ND' => 'North Dakota',
  62. 'OH' => 'Ohio',
  63. 'OK' => 'Oklahoma',
  64. 'OR' => 'Oregon',
  65. 'PA' => 'Pennsylvania',
  66. 'RI' => 'Rhode Island',
  67. 'SC' => 'South Carolina',
  68. 'SD' => 'South Dakota',
  69. 'TN' => 'Tennessee',
  70. 'TX' => 'Texas',
  71. 'UT' => 'Utah',
  72. 'VT' => 'Vermont',
  73. 'VA' => 'Virginia',
  74. 'WA' => 'Washington',
  75. 'WV' => 'West Virginia',
  76. 'WI' => 'Wisconsin',
  77. 'WY' => 'Wyoming',
  78. );