Same name and namespace in other branches
  1. 8.9.x core/modules/node/src/Plugin/views/field/Node.php \Drupal\node\Plugin\views\field\Node::renderLink()
  2. 9 core/modules/node/src/Plugin/views/field/Node.php \Drupal\node\Plugin\views\field\Node::renderLink()

Prepares link to the node.

Parameters

string $data: The XSS safe string for the link text.

\Drupal\views\ResultRow $values: The values retrieved from a single row of a view's query result.

Return value

string Returns a string for the link text.

2 calls to Node::renderLink()
HistoryUserTimestamp::render in core/modules/history/src/Plugin/views/field/HistoryUserTimestamp.php
Node::render in core/modules/node/src/Plugin/views/field/Node.php

File

core/modules/node/src/Plugin/views/field/Node.php, line 71

Class

Node

Namespace

Drupal\node\Plugin\views\field

Code

protected function renderLink($data, ResultRow $values) {
  if (!empty($this->options['link_to_node']) && !empty($this->additional_fields['nid'])) {
    if ($data !== NULL && $data !== '') {
      $this->options['alter']['make_link'] = TRUE;
      $this->options['alter']['url'] = Url::fromRoute('entity.node.canonical', [
        'node' => $this
          ->getValue($values, 'nid'),
      ]);
      if (isset($this->aliases['langcode'])) {
        $languages = \Drupal::languageManager()
          ->getLanguages();
        $langcode = $this
          ->getValue($values, 'langcode');
        if (isset($languages[$langcode])) {
          $this->options['alter']['language'] = $languages[$langcode];
        }
        else {
          unset($this->options['alter']['language']);
        }
      }
    }
    else {
      $this->options['alter']['make_link'] = FALSE;
    }
  }
  return $data;
}