function StatisticsLastCommentName::render
Overrides FieldPluginBase::render
File
-
core/
modules/ comment/ src/ Plugin/ views/ field/ StatisticsLastCommentName.php, line 81
Class
- StatisticsLastCommentName
- Field handler to present the name of the last comment poster.
Namespace
Drupal\comment\Plugin\views\fieldCode
public function render(ResultRow $values) {
if (!empty($this->options['link_to_user'])) {
$account = User::create();
$account->name = $this->getValue($values);
$account->uid = $values->{$this->uid};
$username = [
'#theme' => 'username',
'#account' => $account,
];
return \Drupal::service('renderer')->render($username);
}
else {
return $this->sanitizeValue($this->getValue($values));
}
}