Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. EntityLabel.php

function EntityLabel::render

Overrides FieldPluginBase::render

File

core/modules/views/src/Plugin/views/field/EntityLabel.php, line 98

Class

EntityLabel
Field handler to display entity label optionally linked to entity page.

Namespace

Drupal\views\Plugin\views\field

Code

public function render(ResultRow $values) {
    $type = $this->getValue($values, $this->definition['entity type field']);
    $value = $this->getValue($values);
    if (empty($this->loadedReferencers[$type][$value])) {
        return;
    }
    
    /** @var \Drupal\Core\Entity\EntityInterface $entity */
    $entity = $this->loadedReferencers[$type][$value];
    if (!empty($this->options['link_to_entity'])) {
        try {
            $this->options['alter']['url'] = $entity->toUrl();
            $this->options['alter']['make_link'] = TRUE;
        } catch (UndefinedLinkTemplateException) {
            $this->options['alter']['make_link'] = FALSE;
        } catch (EntityMalformedException) {
            $this->options['alter']['make_link'] = FALSE;
        }
    }
    return $this->sanitizeValue($entity->label());
}

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal