You are here

public function LastTimestamp::render in Drupal 10

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

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