public function EntityLabel::render in Commerce License 8.2
Renders the field.
Parameters
\Drupal\views\ResultRow $values: The values retrieved from a single row of a view's query result.
Return value
string|\Drupal\Component\Render\MarkupInterface The rendered output. If the output is safe it will be wrapped in an object that implements MarkupInterface. If it is empty or unsafe it will be a string.
Overrides EntityLabel::render
File
- src/
Plugin/ views/ field/ EntityLabel.php, line 78
Class
- EntityLabel
- Field handler to display entity label optionally linked to entity page.
Namespace
Drupal\commerce_license\Plugin\views\fieldCode
public function render(ResultRow $values) {
$entity_type_id = $this
->getEntityTypeFromValues($values);
$value = $this
->getValue($values);
if (empty($this->loadedReferencers[$entity_type_id][$value])) {
return;
}
/** @var $entity \Drupal\Core\Entity\EntityInterface */
$entity = $this->loadedReferencers[$entity_type_id][$value];
if (!empty($this->options['link_to_entity'])) {
try {
$this->options['alter']['url'] = $entity
->toUrl();
$this->options['alter']['make_link'] = TRUE;
} catch (UndefinedLinkTemplateException $e) {
$this->options['alter']['make_link'] = FALSE;
} catch (EntityMalformedException $e) {
$this->options['alter']['make_link'] = FALSE;
}
}
return $this
->sanitizeValue($entity
->label());
}