function FormTestInputForgeryForm::buildForm

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

Overrides FormInterface::buildForm

File

core/modules/system/tests/modules/form_test/src/Form/FormTestInputForgeryForm.php, line 27

Class

FormTestInputForgeryForm
Form to test input forgery.

Namespace

Drupal\form_test\Form

Code

public function buildForm(array $form, FormStateInterface $form_state) {
    // For testing that a user can't submit a value not matching one of the
    // allowed options.
    $form['checkboxes'] = [
        '#title' => t('Checkboxes'),
        '#type' => 'checkboxes',
        '#options' => [
            'one' => 'One',
            'two' => 'Two',
        ],
    ];
    $form['submit'] = [
        '#type' => 'submit',
        '#value' => t('Submit'),
    ];
    $form['#post_render'][] = [
        static::class,
        'postRender',
    ];
    return $form;
}

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