You are here

protected function EntityLinkDelete::renderLink in Drupal 8

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

Prepares the link to view a entity.

Parameters

\Drupal\views\ResultRow $row: A view result row.

Return value

string Returns a string for the link text.

Overrides EntityLink::renderLink

File

core/modules/views/src/Plugin/views/field/EntityLinkDelete.php, line 26

Class

EntityLinkDelete
Field handler to present a link to delete an entity.

Namespace

Drupal\views\Plugin\views\field

Code

protected function renderLink(ResultRow $row) {
  $this->options['alter']['query'] = $this
    ->getDestinationArray();
  return parent::renderLink($row);
}