You are here

public function FormTestTableSelectJsSelectForm::buildForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectJsSelectForm.php \Drupal\form_test\Form\FormTestTableSelectJsSelectForm::buildForm()
  2. 10 core/modules/system/tests/modules/form_test/src/Form/FormTestTableSelectJsSelectForm.php \Drupal\form_test\Form\FormTestTableSelectJsSelectForm::buildForm()

Form constructor.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Return value

array The form structure.

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\Form

Code

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);
}