You are here

public function CommentStorageInterface::getMaxThread in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/comment/src/CommentStorageInterface.php \Drupal\comment\CommentStorageInterface::getMaxThread()
  2. 9 core/modules/comment/src/CommentStorageInterface.php \Drupal\comment\CommentStorageInterface::getMaxThread()

Gets the maximum encoded thread value for the top level comments.

Parameters

\Drupal\comment\CommentInterface $comment: A comment entity.

Return value

string|null The maximum encoded thread value among the top level comments of the node $comment belongs to. NULL is returned when the commented entity has no comments.

1 method overrides CommentStorageInterface::getMaxThread()
CommentStorage::getMaxThread in core/modules/comment/src/CommentStorage.php
Gets the maximum encoded thread value for the top level comments.

File

core/modules/comment/src/CommentStorageInterface.php, line 25

Class

CommentStorageInterface
Defines an interface for comment entity storage classes.

Namespace

Drupal\comment

Code

public function getMaxThread(CommentInterface $comment);