PluginProbe
Contact Forms by Cimatti / 1.9.2
Contact Forms by Cimatti v1.9.2
2.3.6 2.3.5 2.3.0 2.2.32 2.2.4 2.2.0 2.1.2 2.1.1 trunk 1.0 1.1 1.2 1.2.1 1.3 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 All 62 releases
contact-forms / PFBC / Element / State.php

State.php in Contact Forms by Cimatti 1.9.2, at PFBC/Element/State.php

61 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 class Element_State extends Element_Select {
3 public function __construct($label, $name, array $properties = null) {
4 $options = array(
5 "" => "--Select State--",
6 "AL" => "Alabama",
7 "AK" => "Alaska",
8 "AZ" => "Arizona",
9 "AR" => "Arkansas",
10 "CA" => "California",
11 "CO" => "Colorado",
12 "CT" => "Connecticut",
13 "DE" => "Delaware",
14 "DC" => "District of Columbia",
15 "FL" => "Florida",
16 "GA" => "Georgia",
17 "HI" => "Hawaii",
18 "ID" => "Idaho",
19 "IL" => "Illinois",
20 "IN" => "Indiana",
21 "IA" => "Iowa",
22 "KS" => "Kansas",
23 "KY" => "Kentucky",
24 "LA" => "Louisiana",
25 "ME" => "Maine",
26 "MD" => "Maryland",
27 "MA" => "Massachusetts",
28 "MI" => "Michigan",
29 "MN" => "Minnesota",
30 "MS" => "Mississippi",
31 "MO" => "Missouri",
32 "MT" => "Montana",
33 "NE" => "Nebraska",
34 "NV" => "Nevada",
35 "NH" => "New Hampshire",
36 "NJ" => "New Jersey",
37 "NM" => "New Mexico",
38 "NY" => "New York",
39 "NC" => "North Carolina",
40 "ND" => "North Dakota",
41 "OH" => "Ohio",
42 "OK" => "Oklahoma",
43 "OR" => "Oregon",
44 "PA" => "Pennsylvania",
45 "RI" => "Rhode Island",
46 "SC" => "South Carolina",
47 "SD" => "South Dakota",
48 "TN" => "Tennessee",
49 "TX" => "Texas",
50 "UT" => "Utah",
51 "VT" => "Vermont",
52 "VA" => "Virginia",
53 "WA" => "Washington",
54 "WV" => "West Virginia",
55 "WI" => "Wisconsin",
56 "WY" => "Wyoming"
57 );
58 parent::__construct($label, $name, $options, $properties);
59 }
60 }
61