function 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\fieldCode
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.