function render(ResultRow $values) {
if ($this
->getValue($values) && ($entity = $this
->getEntity($values))) {
if (!empty($this->options['link_to_entity'])) {
$this->options['alter']['url'] = $entity
->toUrl();
$this->options['alter']['make_link'] = TRUE;
}
return $this
->sanitizeValue($entity
->label());
}
}