You are here

public function StatisticsLastCommentName::render in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Plugin/views/field/StatisticsLastCommentName.php \Drupal\comment\Plugin\views\field\StatisticsLastCommentName::render()

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 FieldPluginBase::render

File

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

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