Comment::postDelete

public static Comment::postDelete(EntityStorageInterface $storage, array $entities)

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 Entity::postDelete

File

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

Class

Comment
Defines the comment entity class.

Namespace

Drupal\comment\Entity

Code

1
2
3
4
5
6
7
8
9
10
public static function postDelete(EntityStorageInterface $storage, array $entities) {
  parent::postDelete($storage, $entities);
 
  $child_cids = $storage->getChildCids($entities);
  entity_delete_multiple('comment', $child_cids);
 
  foreach ($entities as $id => $entity) {
    \Drupal::service('comment.statistics')->update($entity);
  }
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.