Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. RevisionLink.php

function RevisionLink::getUrlInfo

Overrides LinkBase::getUrlInfo

2 methods override RevisionLink::getUrlInfo()
RevisionLinkDelete::getUrlInfo in core/modules/node/src/Plugin/views/field/RevisionLinkDelete.php
Returns the URI elements of the link.
RevisionLinkRevert::getUrlInfo in core/modules/node/src/Plugin/views/field/RevisionLinkRevert.php
Returns the URI elements of the link.

File

core/modules/node/src/Plugin/views/field/RevisionLink.php, line 21

Class

RevisionLink
Field handler to present a link to a node revision.

Namespace

Drupal\node\Plugin\views\field

Code

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();
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal