function CommentStatistics::getMaximumCount

Same name and namespace in other branches
  1. 9 core/modules/comment/src/CommentStatistics.php \Drupal\comment\CommentStatistics::getMaximumCount()
  2. 8.9.x core/modules/comment/src/CommentStatistics.php \Drupal\comment\CommentStatistics::getMaximumCount()
  3. 10 core/modules/comment/src/CommentStatistics.php \Drupal\comment\CommentStatistics::getMaximumCount()

File

core/modules/comment/src/CommentStatistics.php, line 166

Class

CommentStatistics

Namespace

Drupal\comment

Code

public function getMaximumCount($entity_type) {
    return $this->database
        ->query('SELECT MAX([comment_count]) FROM {comment_entity_statistics} WHERE [entity_type] = :entity_type', [
        ':entity_type' => $entity_type,
    ])
        ->fetchField();
}

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