RevisionLink.php

Same filename and directory in other branches
  1. 9 core/modules/node/src/Plugin/views/field/RevisionLink.php
  2. 8.9.x core/modules/node/src/Plugin/views/field/RevisionLink.php
  3. 11.x core/modules/node/src/Plugin/views/field/RevisionLink.php

Namespace

Drupal\node\Plugin\views\field

File

core/modules/node/src/Plugin/views/field/RevisionLink.php

View source
<?php

namespace Drupal\node\Plugin\views\field;

use Drupal\Core\Url;
use Drupal\views\Attribute\ViewsField;
use Drupal\views\Plugin\views\field\LinkBase;
use Drupal\views\ResultRow;

/**
 * Field handler to present a link to a node revision.
 *
 * @ingroup views_field_handlers
 */
class RevisionLink extends LinkBase {
  
  /**
   * {@inheritdoc}
   */
  protected function getUrlInfo(ResultRow $row) {
    /** @var \Drupal\node\NodeInterface $node */
    $node = $this->getEntity($row);
    if (!$node) {
      return NULL;
    }
    // Current revision uses the node view path.
    return !$node->isDefaultRevision() ? Url::fromRoute('entity.node.revision', [
      'node' => $node->id(),
      'node_revision' => $node->getRevisionId(),
    ]) : $node->toUrl();
  }
  
  /**
   * {@inheritdoc}
   */
  protected function renderLink(ResultRow $row) {
    /** @var \Drupal\node\NodeInterface $node */
    $node = $this->getEntity($row);
    if (!$node || !$node->getRevisionid()) {
      return '';
    }
    $text = parent::renderLink($row);
    $this->options['alter']['query'] = $this->getDestinationArray();
    return $text;
  }
  
  /**
   * {@inheritdoc}
   */
  protected function getDefaultLabel() {
    return $this->t('View');
  }

}

Classes

Title Deprecated Summary
RevisionLink Field handler to present a link to a node revision.

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