public static function Comment::postDelete in Drupal 9
Same name and namespace in other branches
- 8 core/modules/comment/src/Entity/Comment.php \Drupal\comment\Entity\Comment::postDelete()
Acts on deleted entities before the delete hook is invoked.
Used after the entities are deleted but before invoking the delete hook.
Parameters
\Drupal\Core\Entity\EntityStorageInterface $storage: The entity storage object.
\Drupal\Core\Entity\EntityInterface[] $entities: An array of entities.
Overrides EntityBase::postDelete
File
- core/
modules/ comment/ src/ Entity/ Comment.php, line 188
Class
- Comment
- Defines the comment entity class.
Namespace
Drupal\comment\EntityCode
public static function postDelete(EntityStorageInterface $storage, array $entities) {
parent::postDelete($storage, $entities);
$child_cids = $storage
->getChildCids($entities);
$comment_storage = \Drupal::entityTypeManager()
->getStorage('comment');
$comments = $comment_storage
->loadMultiple($child_cids);
$comment_storage
->delete($comments);
foreach ($entities as $id => $entity) {
\Drupal::service('comment.statistics')
->update($entity);
}
}