public function MongodbCommentStorage::getChildCids in MongoDB 8
Gets the comment ids of the passed comment entities' children.
Parameters
\Drupal\comment\CommentInterface[] $comments: An array of comment entities keyed by their ids.
Return value
array The entity ids of the passed comment entities' children as an array.
Overrides CommentStorageInterface::getChildCids
File
- mongodb_comment/
src/ MongodbCommentStorage.php, line 95 - Contains \Drupal\mongodb_comment\MongodbCommentStorage.
Class
Namespace
Drupal\mongodb_commentCode
public function getChildCids(array $comments) {
// TODO: Implement getChildCids() method.
return [];
}