function NodeRevisionDeleteForm::submitForm

Same name and namespace in other branches
  1. 8.9.x core/modules/node/src/Form/NodeRevisionDeleteForm.php \Drupal\node\Form\NodeRevisionDeleteForm::submitForm()
  2. 10 core/modules/node/src/Form/NodeRevisionDeleteForm.php \Drupal\node\Form\NodeRevisionDeleteForm::submitForm()
  3. 11.x core/modules/node/src/Form/NodeRevisionDeleteForm.php \Drupal\node\Form\NodeRevisionDeleteForm::submitForm()

Overrides FormInterface::submitForm

File

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

Class

NodeRevisionDeleteForm
Provides a form for deleting a node revision.

Namespace

Drupal\node\Form

Code

public function submitForm(array &$form, FormStateInterface $form_state) {
    $this->nodeStorage
        ->deleteRevision($this->revision
        ->getRevisionId());
    $this->logger('content')
        ->notice('@type: deleted %title revision %revision.', [
        '@type' => $this->revision
            ->bundle(),
        '%title' => $this->revision
            ->label(),
        '%revision' => $this->revision
            ->getRevisionId(),
    ]);
    $node_type = $this->nodeTypeStorage
        ->load($this->revision
        ->bundle())
        ->label();
    $this->messenger()
        ->addStatus($this->t('Revision from %revision-date of @type %title has been deleted.', [
        '%revision-date' => $this->dateFormatter
            ->format($this->revision
            ->getRevisionCreationTime()),
        '@type' => $node_type,
        '%title' => $this->revision
            ->label(),
    ]));
    $form_state->setRedirect('entity.node.canonical', [
        'node' => $this->revision
            ->id(),
    ]);
    if ($this->connection
        ->query('SELECT COUNT(DISTINCT [vid]) FROM {node_field_revision} WHERE [nid] = :nid', [
        ':nid' => $this->revision
            ->id(),
    ])
        ->fetchField() > 1) {
        $form_state->setRedirect('entity.node.version_history', [
            'node' => $this->revision
                ->id(),
        ]);
    }
}

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