You are here

public function StatisticsLastCommentName::render in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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 68
Contains \Drupal\comment\Plugin\views\field\StatisticsLastCommentName.

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 = entity_create('user');
    $account->name = $this
      ->getValue($values);
    $account->uid = $values->{$this->uid};
    $username = array(
      '#theme' => 'username',
      '#account' => $account,
    );
    return drupal_render($username);
  }
  else {
    return $this
      ->sanitizeValue($this
      ->getValue($values));
  }
}