public function CommentStatistics::getMaximumCount in Drupal 8
Same name and namespace in other branches
- 9 core/modules/comment/src/CommentStatistics.php \Drupal\comment\CommentStatistics::getMaximumCount()
Find the maximum number of comments for the given entity type.
Used to influence search rankings.
Parameters
string $entity_type: The entity type to consider when fetching the maximum comment count for.
Return value
int The maximum number of comments for and entity of the given type.
Overrides CommentStatisticsInterface::getMaximumCount
See also
comment_update_index()
File
- core/
modules/ comment/ src/ CommentStatistics.php, line 163
Class
Namespace
Drupal\commentCode
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();
}