You are here

protected function LinkEdit::renderLink in File Entity (fieldable files) 8.2

Prepares the link to editing the file entity.

Parameters

\Drupal\Core\Entity\EntityInterface $file: The media entity this field belongs to.

\Drupal\views\ResultRow $values: The values retrieved from the view's result set.

Return value

string Returns a string for the link text or returns null if user has no access.

File

src/Plugin/views/field/LinkEdit.php, line 30

Class

LinkEdit
Field handler to present a link to edit the file.

Namespace

Drupal\file_entity\Plugin\views\field

Code

protected function renderLink($file, ResultRow $values) {
  $text = NULL;

  // Ensure user has access to edit this media.
  if ($file
    ->access('update')) {
    $this->options['alter']['make_link'] = TRUE;
    $this->options['alter']['path'] = 'file/' . $file
      ->id() . '/edit';
    $this->options['alter']['query'] = $this
      ->getDestinationArray();
    $text = !empty($this->options['text']) ? $this->options['text'] : t('Edit');
  }
  return $text;
}