RevisionLinkRevert.php

Definition of Drupal\node\Plugin\views\field\RevisionLinkRevert.

Namespace

Drupal\node\Plugin\views\field

File

drupal/core/modules/node/lib/Drupal/node/Plugin/views/field/RevisionLinkRevert.php
View source
<?php

/**
 * @file
 * Definition of Drupal\node\Plugin\views\field\RevisionLinkRevert.
 */
namespace Drupal\node\Plugin\views\field;

use Drupal\node\Plugin\views\field\RevisionLink;
use Drupal\Core\Annotation\Plugin;

/**
 * Field handler to present a link to revert a node to a revision.
 *
 * @ingroup views_field_handlers
 *
 * @Plugin(
 *   id = "node_revision_link_revert",
 *   module = "node"
 * )
 */
class RevisionLinkRevert extends RevisionLink {
  public function access() {
    return user_access('revert revisions') || user_access('administer nodes');
  }
  function render_link($data, $values) {
    list($node, $vid) = $this
      ->get_revision_entity($values, 'update');
    if (!isset($vid)) {
      return;
    }

    // Current revision cannot be reverted.
    if ($node->vid == $vid) {
      return;
    }
    $this->options['alter']['make_link'] = TRUE;
    $this->options['alter']['path'] = 'node/' . $node->nid . "/revisions/{$vid}/revert";
    $this->options['alter']['query'] = drupal_get_destination();
    return !empty($this->options['text']) ? $this->options['text'] : t('revert');
  }

}

Classes

Namesort descending Description
RevisionLinkRevert Field handler to present a link to revert a node to a revision.