You are here

public function FormTestInputForgeryForm::buildForm in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/form_test/src/Form/FormTestInputForgeryForm.php \Drupal\form_test\Form\FormTestInputForgeryForm::buildForm()
  2. 9 core/modules/system/tests/modules/form_test/src/Form/FormTestInputForgeryForm.php \Drupal\form_test\Form\FormTestInputForgeryForm::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/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;
}