function FormTestTableSelectJsSelectForm::buildForm
Same name in other branches
- 9 core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectJsSelectForm.php \Drupal\form_test\Form\FormTestTableSelectJsSelectForm::buildForm()
- 10 core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectJsSelectForm.php \Drupal\form_test\Form\FormTestTableSelectJsSelectForm::buildForm()
- 11.x core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectJsSelectForm.php \Drupal\form_test\Form\FormTestTableSelectJsSelectForm::buildForm()
Overrides FormInterface::buildForm
File
-
core/
modules/ system/ tests/ modules/ form_test/ src/ Form/ FormTestTableSelectJsSelectForm.php, line 24
Class
- FormTestTableSelectJsSelectForm
- Builds a form to test table select with JS.
Namespace
Drupal\form_test\FormCode
public function buildForm(array $form, FormStateInterface $form_state, $test_action = NULL) {
switch ($test_action) {
case 'multiple-true-default':
$options = [
'#multiple' => TRUE,
];
break;
case 'multiple-false-default':
$options = [
'#multiple' => FALSE,
];
break;
case 'multiple-true-no-advanced-select':
$options = [
'#multiple' => TRUE,
'#js_select' => FALSE,
];
break;
case 'multiple-false-advanced-select':
$options = [
'#multiple' => FALSE,
'#js_select' => TRUE,
];
break;
}
return $this->tableselectFormBuilder($form, $form_state, $options);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.