function LastTimestamp::render

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()
  2. 8.9.x core/modules/comment/src/Plugin/views/field/LastTimestamp.php \Drupal\comment\Plugin\views\field\LastTimestamp::render()
  3. 11.x 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;
  }
}

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