You are here

public function FormTestControllerObject::buildForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/form_test/src/FormTestControllerObject.php \Drupal\form_test\FormTestControllerObject::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 ConfigFormBase::buildForm

File

core/modules/system/tests/modules/form_test/src/FormTestControllerObject.php, line 44

Class

FormTestControllerObject
Provides a test form object.

Namespace

Drupal\form_test

Code

public function buildForm(array $form, FormStateInterface $form_state, Request $request = NULL, $custom_attributes = NULL) {
  $form['element'] = [
    '#markup' => 'The FormTestControllerObject::buildForm() method was used for this form.',
  ];
  $form['custom_attribute']['#markup'] = $custom_attributes;
  $form['request_attribute']['#markup'] = $request->attributes
    ->get('request_attribute');
  $form['bananas'] = [
    '#type' => 'textfield',
    '#title' => $this
      ->t('Bananas'),
  ];
  $form['actions']['#type'] = 'actions';
  $form['actions']['submit'] = [
    '#type' => 'submit',
    '#value' => $this
      ->t('Save'),
  ];
  return $form;
}