Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::buildForm()
  2. 9 core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php \Drupal\Core\Entity\ContentEntityConfirmFormBase::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 EntityForm::buildForm

2 calls to ContentEntityConfirmFormBase::buildForm()
ContentEntityDeleteForm::buildForm in core/lib/Drupal/Core/Entity/ContentEntityDeleteForm.php
Form constructor.
UserCancelForm::buildForm in core/modules/user/src/Form/UserCancelForm.php
Form constructor.
2 methods override ContentEntityConfirmFormBase::buildForm()
ContentEntityDeleteForm::buildForm in core/lib/Drupal/Core/Entity/ContentEntityDeleteForm.php
Form constructor.
UserCancelForm::buildForm in core/modules/user/src/Form/UserCancelForm.php
Form constructor.

File

core/lib/Drupal/Core/Entity/ContentEntityConfirmFormBase.php, line 52

Class

ContentEntityConfirmFormBase
Provides a generic base class for an entity-based confirmation form.

Namespace

Drupal\Core\Entity

Code

public function buildForm(array $form, FormStateInterface $form_state) {
  $form = parent::buildForm($form, $form_state);
  $form['#title'] = $this
    ->getQuestion();
  $form['#attributes']['class'][] = 'confirmation';
  $form['description'] = [
    '#markup' => $this
      ->getDescription(),
  ];
  $form[$this
    ->getFormName()] = [
    '#type' => 'hidden',
    '#value' => 1,
  ];

  // By default, render the form using theme_confirm_form().
  if (!isset($form['#theme'])) {
    $form['#theme'] = 'confirm_form';
  }
  return $form;
}