function Comment::postDelete

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

Overrides EntityBase::postDelete

File

core/modules/comment/src/Entity/Comment.php, line 188

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

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 $entity) {
        \Drupal::service('comment.statistics')->update($entity);
    }
}

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