You are here

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

Prepares the link to download the file.

Parameters

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

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

Return value

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

File

src/Plugin/views/field/LinkDownload.php, line 27

Class

LinkDownload
Field handler to present a link to delete the file.

Namespace

Drupal\file_entity\Plugin\views\field

Code

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

  // Ensure user has access to delete this media item.
  if ($file
    ->access('download')) {
    $this->options['alter']['make_link'] = TRUE;
    $this->options['alter']['path'] = $file
      ->downloadUrl()
      ->toString();
    $text = !empty($this->options['text']) ? $this->options['text'] : t('Download');
  }
  return $text;
}