@@ -43,11 +43,30 @@ public function buildForm(array $form, FormStateInterface $form_state) {
43
43
'#description ' => 'Date, #type = date ' ,
44
44
];
45
45
46
+ // Date-time.
47
+ $ form ['datetime ' ] = [
48
+ '#type ' => 'datetime ' ,
49
+ '#title ' => 'Date Time ' ,
50
+ '#date_increment ' => 1 ,
51
+ '#date_timezone ' => drupal_get_user_timezone (),
52
+ '#default_value ' => drupal_get_user_timezone (),
53
+ '#description ' => $ this ->t ('Date time, #type = datetime ' ),
54
+ ];
55
+
56
+ // URL.
57
+ $ form ['url ' ] = [
58
+ '#type ' => 'url ' ,
59
+ '#title ' => $ this ->t ('URL ' ),
60
+ '#maxlength ' => 255 ,
61
+ '#size ' => 30 ,
62
+ '#description ' => $ this ->t ('URL, #type = url ' ),
63
+ ];
64
+
46
65
// Email.
47
66
$ form ['email ' ] = [
48
67
'#type ' => 'email ' ,
49
68
'#title ' => $ this ->t ('Email ' ),
50
- '#description ' => 'Email, #type = email ' ,
69
+ '#description ' => $ this -> t ( 'Email, #type = email ' ) ,
51
70
];
52
71
53
72
// Number.
@@ -108,13 +127,34 @@ public function buildForm(array $form, FormStateInterface $form_state) {
108
127
'#description ' => $ this ->t ('Select, #type = select ' ),
109
128
];
110
129
130
+ // Multiple values option elements.
131
+ $ form ['select_multiple ' ] = [
132
+ '#type ' => 'select ' ,
133
+ '#title ' => 'Select (multiple) ' ,
134
+ '#multiple ' => TRUE ,
135
+ '#options ' => [
136
+ 'sat ' => 'SAT ' ,
137
+ 'act ' => 'ACT ' ,
138
+ 'none ' => 'N/A ' ,
139
+ ],
140
+ '#default_value ' => ['sat ' ],
141
+ '#description ' => 'Select Multiple ' ,
142
+ ];
143
+
111
144
// Tel.
112
145
$ form ['phone ' ] = [
113
146
'#type ' => 'tel ' ,
114
147
'#title ' => $ this ->t ('Phone ' ),
115
148
'#description ' => $ this ->t ('Tel, #type = tel ' ),
116
149
];
117
150
151
+ // Details.
152
+ $ form ['details ' ] = [
153
+ '#type ' => 'details ' ,
154
+ '#title ' => $ this ->t ('Details ' ),
155
+ '#description ' => $ this ->t ('Details, #type = details ' ),
156
+ ];
157
+
118
158
// TableSelect.
119
159
$ options = [
120
160
1 => ['first_name ' => 'Indy ' , 'last_name ' => 'Jones ' ],
@@ -142,6 +182,22 @@ public function buildForm(array $form, FormStateInterface $form_state) {
142
182
'#description ' => $ this ->t ('Textarea, #type = textarea ' ),
143
183
];
144
184
185
+ // Text format.
186
+ $ form ['text_format ' ] = [
187
+ '#type ' => 'text_format ' ,
188
+ '#title ' => 'Text format ' ,
189
+ '#format ' => 'plain_text ' ,
190
+ '#expected_value ' => [
191
+ 'value ' => 'Text value ' ,
192
+ 'format ' => 'plain_text ' ,
193
+ ],
194
+ '#textformat_value ' => [
195
+ 'value ' => 'Testvalue ' ,
196
+ 'format ' => 'filtered_html ' ,
197
+ ],
198
+ '#description ' => $ this ->t ('Text format, #type = text_format ' ),
199
+ ];
200
+
145
201
// Textfield.
146
202
$ form ['subject ' ] = [
147
203
'#type ' => 'textfield ' ,
@@ -181,13 +237,53 @@ public function buildForm(array $form, FormStateInterface $form_state) {
181
237
],
182
238
];
183
239
240
+ // File.
241
+ $ form ['file ' ] = [
242
+ '#type ' => 'file ' ,
243
+ '#title ' => 'File ' ,
244
+ '#description ' => $ this ->t ('File, #type = file ' ),
245
+ ];
246
+
247
+ // Manage file.
248
+ $ form ['managed_file ' ] = [
249
+ '#type ' => 'managed_file ' ,
250
+ '#title ' => 'Managed file ' ,
251
+ '#description ' => $ this ->t ('Manage file, #type = managed_file ' ),
252
+ ];
253
+
254
+ // Image Buttons.
255
+ $ form ['image_button ' ] = [
256
+ '#type ' => 'image_button ' ,
257
+ '#value ' => 'Image button ' ,
258
+ '#src ' => drupal_get_path ('module ' , 'examples ' ) . '/images/100x30.svg ' ,
259
+ '#description ' => $ this ->t ('image file, #type = image_button ' ),
260
+ ];
261
+
262
+ // Button.
263
+ $ form ['button ' ] = [
264
+ '#type ' => 'button ' ,
265
+ '#value ' => 'Button ' ,
266
+ '#description ' => $ this ->t ('Button, #type = button ' ),
267
+ ];
268
+
184
269
// Add a submit button that handles the submission of the form.
185
270
$ form ['actions ' ]['submit ' ] = [
186
271
'#type ' => 'submit ' ,
187
272
'#value ' => $ this ->t ('Submit ' ),
188
273
'#description ' => $ this ->t ('Submit, #type = submit ' ),
189
274
];
190
275
276
+ // Add a reset button that handles the submission of the form.
277
+ $ form ['actions ' ]['reset ' ] = [
278
+ '#type ' => 'button ' ,
279
+ '#button_type ' => 'reset ' ,
280
+ '#value ' => t ('Reset ' ),
281
+ '#description ' => $ this ->t ('Submit, #type = button, #button_type = reset, #attributes = this.form.reset();return false ' ),
282
+ '#attributes ' => [
283
+ 'onclick ' => 'this.form.reset(); return false; ' ,
284
+ ],
285
+ ];
286
+
191
287
return $ form ;
192
288
}
193
289
0 commit comments