You are here

public function LastTimestamp::render in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/comment/src/Plugin/views/field/LastTimestamp.php \Drupal\comment\Plugin\views\field\LastTimestamp::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 Date::render

File

core/modules/comment/src/Plugin/views/field/LastTimestamp.php, line 31

Class

LastTimestamp
Field handler to display the timestamp of a comment with the count of comments.

Namespace

Drupal\comment\Plugin\views\field

Code

public function render(ResultRow $values) {
  $comment_count = $this
    ->getValue($values, 'comment_count');
  if (empty($this->options['empty_zero']) || $comment_count) {
    return parent::render($values);
  }
  else {
    return NULL;
  }
}