You are here

public function NodeRevisionDeleteForm::buildForm in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/node/src/Form/NodeRevisionDeleteForm.php \Drupal\node\Form\NodeRevisionDeleteForm::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 ConfirmFormBase::buildForm

File

core/modules/node/src/Form/NodeRevisionDeleteForm.php, line 120

Class

NodeRevisionDeleteForm
Provides a form for deleting a node revision.

Namespace

Drupal\node\Form

Code

public function buildForm(array $form, FormStateInterface $form_state, $node_revision = NULL) {
  $this->revision = $this->nodeStorage
    ->loadRevision($node_revision);
  $form = parent::buildForm($form, $form_state);
  return $form;
}