function comment_user_predelete
Same name in other branches
- 9 core/modules/comment/comment.module \comment_user_predelete()
- 10 core/modules/comment/comment.module \comment_user_predelete()
- 11.x core/modules/comment/comment.module \comment_user_predelete()
Implements hook_ENTITY_TYPE_predelete() for user entities.
File
-
core/
modules/ comment/ comment.module, line 561
Code
function comment_user_predelete($account) {
$entity_query = \Drupal::entityQuery('comment');
$entity_query->condition('uid', $account->id());
$cids = $entity_query->execute();
$comment_storage = \Drupal::entityTypeManager()->getStorage('comment');
$comments = $comment_storage->loadMultiple($cids);
$comment_storage->delete($comments);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.