ca.states.inc.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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 Canadian states
  24. * @package formit
  25. * @author cyberwitz
  26. */
  27. return array(
  28. 'AB' => 'Alberta',
  29. 'BC' => 'British Columbia',
  30. 'MB' => 'Manitoba',
  31. 'NB' => 'New Brunswick',
  32. 'NL' => 'Newfoundland And Labrador',
  33. 'NS' => 'Nova Scotia',
  34. 'NT' => 'Northwest Territories',
  35. 'NU' => 'Nunavut',
  36. 'ON' => 'Ontario',
  37. 'PE' => 'Prince Edward Island',
  38. 'QC' => 'Quebec',
  39. 'SK' => 'Saskatchewan',
  40. 'YT' => 'Yukon'
  41. );