You are here

LinkEdit.php in File Entity (fieldable files) 8.2

File

src/Plugin/views/field/LinkEdit.php
View source
<?php

namespace Drupal\file_entity\Plugin\views\field;

use Drupal\views\ResultRow;
use Drupal\Core\Routing\RedirectDestinationTrait;

/**
 * Field handler to present a link to edit the file.
 *
 * @ingroup views_field_handlers
 *
 * @ViewsField("file_entity_link_edit")
 */
class LinkEdit extends Link {
  use RedirectDestinationTrait;

  /**
   * Prepares the link to editing the file entity.
   *
   * @param \Drupal\Core\Entity\EntityInterface $file
   *   The media entity this field belongs to.
   * @param \Drupal\views\ResultRow $values
   *   The values retrieved from the view's result set.
   *
   * @return string
   *   Returns a string for the link text or returns null if user has no access.
   */
  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;
  }

}

Classes

Namesort descending Description
LinkEdit Field handler to present a link to edit the file.