You are here

public function NodeRevisionDeleteForm::submitForm in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/node/src/Form/NodeRevisionDeleteForm.php \Drupal\node\Form\NodeRevisionDeleteForm::submitForm()

Form submission handler.

Parameters

array $form: An associative array containing the structure of the form.

\Drupal\Core\Form\FormStateInterface $form_state: The current state of the form.

Overrides FormInterface::submitForm

File

core/modules/node/src/Form/NodeRevisionDeleteForm.php, line 119
Contains \Drupal\node\Form\NodeRevisionDeleteForm.

Class

NodeRevisionDeleteForm
Provides a form for reverting 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.', array(
    '@type' => $this->revision
      ->bundle(),
    '%title' => $this->revision
      ->label(),
    '%revision' => $this->revision
      ->getRevisionId(),
  ));
  $node_type = $this->nodeTypeStorage
    ->load($this->revision
    ->bundle())
    ->label();
  drupal_set_message(t('Revision from %revision-date of @type %title has been deleted.', array(
    '%revision-date' => format_date($this->revision
      ->getRevisionCreationTime()),
    '@type' => $node_type,
    '%title' => $this->revision
      ->label(),
  )));
  $form_state
    ->setRedirect('entity.node.canonical', array(
    'node' => $this->revision
      ->id(),
  ));
  if ($this->connection
    ->query('SELECT COUNT(DISTINCT vid) FROM {node_field_revision} WHERE nid = :nid', array(
    ':nid' => $this->revision
      ->id(),
  ))
    ->fetchField() > 1) {
    $form_state
      ->setRedirect('entity.node.version_history', array(
      'node' => $this->revision
        ->id(),
    ));
  }
}