function FormTestStorageForm::buildForm

Same name in other branches
  1. 9 core/modules/system/tests/modules/form_test/src/Form/FormTestStorageForm.php \Drupal\form_test\Form\FormTestStorageForm::buildForm()
  2. 8.9.x core/modules/system/tests/modules/form_test/src/Form/FormTestStorageForm.php \Drupal\form_test\Form\FormTestStorageForm::buildForm()
  3. 10 core/modules/system/tests/modules/form_test/src/Form/FormTestStorageForm.php \Drupal\form_test\Form\FormTestStorageForm::buildForm()

Overrides FormInterface::buildForm

File

core/modules/system/tests/modules/form_test/src/Form/FormTestStorageForm.php, line 33

Class

FormTestStorageForm
A multistep form for testing the form storage.

Namespace

Drupal\form_test\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
    if ($form_state->isRebuilding()) {
        $form_state->setUserInput([]);
    }
    // Initialize
    $storage = $form_state->getStorage();
    $session = $this->getRequest()
        ->getSession();
    if (empty($storage)) {
        $user_input = $form_state->getUserInput();
        if (empty($user_input)) {
            $session->set('constructions', 0);
        }
        // Put the initial thing into the storage
        $storage = [
            'thing' => [
                'title' => 'none',
                'value' => '',
            ],
        ];
        $form_state->setStorage($storage);
    }
    // Count how often the form is constructed.
    $counter = $session->get('constructions');
    $session->set('constructions', ++$counter);
    $this->messenger()
        ->addStatus("Form constructions: " . $counter);
    $form['title'] = [
        '#type' => 'textfield',
        '#title' => 'Title',
        '#default_value' => $storage['thing']['title'],
        '#required' => TRUE,
    ];
    $form['value'] = [
        '#type' => 'textfield',
        '#title' => 'Value',
        '#default_value' => $storage['thing']['value'],
        '#element_validate' => [
            '::elementValidateValueCached',
        ],
    ];
    $form['continue_button'] = [
        '#type' => 'button',
        '#value' => 'Reset',
    ];
    $form['continue_submit'] = [
        '#type' => 'submit',
        '#value' => 'Continue submit',
        '#submit' => [
            '::continueSubmitForm',
        ],
    ];
    $form['submit'] = [
        '#type' => 'submit',
        '#value' => 'Save',
    ];
    return $form;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.