function StatisticsLastCommentName::render

Same name and namespace in other branches
  1. 8.9.x core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php \Drupal\comment\Plugin\views\field\StatisticsLastCommentName::render()
  2. 10 core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php \Drupal\comment\Plugin\views\field\StatisticsLastCommentName::render()
  3. 11.x core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php \Drupal\comment\Plugin\views\field\StatisticsLastCommentName::render()

Overrides FieldPluginBase::render

File

core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php, line 74

Class

StatisticsLastCommentName
Field handler to present the name of the last comment poster.

Namespace

Drupal\comment\Plugin\views\field

Code

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));
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.