Skip to content

Commit bd6fded

Browse files
Manavpaul-m
Manav
authored andcommitted
Issue #2686627 by Manav, navneet0693, Mile23, metzlerd: Complete common input types
1 parent ebc4a65 commit bd6fded

File tree

3 files changed

+121
-4
lines changed

3 files changed

+121
-4
lines changed

fapi_example/src/Form/InputDemo.php

+97-1
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,30 @@ public function buildForm(array $form, FormStateInterface $form_state) {
4343
'#description' => 'Date, #type = date',
4444
];
4545

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+
4665
// Email.
4766
$form['email'] = [
4867
'#type' => 'email',
4968
'#title' => $this->t('Email'),
50-
'#description' => 'Email, #type = email',
69+
'#description' => $this->t('Email, #type = email'),
5170
];
5271

5372
// Number.
@@ -108,13 +127,34 @@ public function buildForm(array $form, FormStateInterface $form_state) {
108127
'#description' => $this->t('Select, #type = select'),
109128
];
110129

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+
111144
// Tel.
112145
$form['phone'] = [
113146
'#type' => 'tel',
114147
'#title' => $this->t('Phone'),
115148
'#description' => $this->t('Tel, #type = tel'),
116149
];
117150

151+
// Details.
152+
$form['details'] = [
153+
'#type' => 'details',
154+
'#title' => $this->t('Details'),
155+
'#description' => $this->t('Details, #type = details'),
156+
];
157+
118158
// TableSelect.
119159
$options = [
120160
1 => ['first_name' => 'Indy', 'last_name' => 'Jones'],
@@ -142,6 +182,22 @@ public function buildForm(array $form, FormStateInterface $form_state) {
142182
'#description' => $this->t('Textarea, #type = textarea'),
143183
];
144184

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+
145201
// Textfield.
146202
$form['subject'] = [
147203
'#type' => 'textfield',
@@ -181,13 +237,53 @@ public function buildForm(array $form, FormStateInterface $form_state) {
181237
],
182238
];
183239

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+
184269
// Add a submit button that handles the submission of the form.
185270
$form['actions']['submit'] = [
186271
'#type' => 'submit',
187272
'#value' => $this->t('Submit'),
188273
'#description' => $this->t('Submit, #type = submit'),
189274
];
190275

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+
191287
return $form;
192288
}
193289

fapi_example/tests/src/Functional/FapiExampleWebTest.php

+11-3
Original file line numberDiff line numberDiff line change
@@ -132,8 +132,10 @@ public function testInputDemoForm() {
132132
// Post the form.
133133
$edit = [
134134
'tests_taken[SAT]' => TRUE,
135-
'color' => '#ff6bf1',
135+
'color' => '#2b49ff',
136136
'expiration' => '2015-10-21',
137+
'datetime[date]' => '2017-12-07 15:32:10',
138+
'url' => 'https://www.drupal.org',
137139
'email' => '[email protected]',
138140
'quantity' => '4',
139141
'password' => 'letmein',
@@ -143,19 +145,23 @@ public function testInputDemoForm() {
143145
'active' => '1',
144146
'search' => 'my search string',
145147
'favorite' => 'blue',
148+
'select_multiple[]' => ['act'],
146149
'phone' => '555-555-5555',
147150
'table[1]' => TRUE,
148151
'table[3]' => TRUE,
149152
'text' => 'This is a test of my form.',
153+
'text_format[value]' => 'Examples for Developers',
150154
'subject' => 'Form test',
151155
'weight' => '3',
152156
];
153157
$this->drupalPostForm('/examples/fapi-example/input-demo', $edit, t('Submit'));
154158
$assert->statusCodeEquals(200);
155159

156-
$assert->pageTextContains('Value for What standardized tests did you take?: Array ( [SAT] => SAT )');
157-
$assert->pageTextContains('Value for Color: #ff6bf1');
160+
$assert->pageTextContains('Value for What standardized tests did you take?');
161+
$assert->pageTextContains('Value for Color: #2b49ff');
158162
$assert->pageTextContains('Value for Content expiration: 2015-10-21');
163+
$assert->pageTextContains('Value for Date Time: 2017-12-07 15:32:10');
164+
$assert->pageTextContains('Value for URL: https://www.drupal.org');
159165
$assert->pageTextContains('Value for Email: [email protected]');
160166
$assert->pageTextContains('Value for Quantity: 4');
161167
$assert->pageTextContains('Value for Password: letmein');
@@ -164,9 +170,11 @@ public function testInputDemoForm() {
164170
$assert->pageTextContains('Value for active: 1');
165171
$assert->pageTextContains('Value for Search: my search string');
166172
$assert->pageTextContains('Value for Favorite color: blue');
173+
$assert->pageTextContains('Value for Select (multiple): Array ( [act] => act )');
167174
$assert->pageTextContains('Value for Phone: 555-555-5555');
168175
$assert->pageTextContains('Value for Users: Array ( [1] => 1 [3] => 3 )');
169176
$assert->pageTextContains('Value for Text: This is a test of my form.');
177+
$assert->pageTextContains('Value for Text format: Array ( [value] => Examples for Developers [format] => plain_text )');
170178
$assert->pageTextContains('Value for Subject: Form test');
171179
$assert->pageTextContains('Value for Weight: 3');
172180
}

images/100x30.svg

+13
Loading

0 commit comments

Comments
 (0)