You are here

function comment_user_predelete in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/comment/comment.module \comment_user_predelete()

Implements hook_ENTITY_TYPE_predelete() for user entities.

File

core/modules/comment/comment.module, line 540
Enables users to comment on published content.

Code

function comment_user_predelete($account) {
  $entity_query = \Drupal::entityQuery('comment');
  $entity_query
    ->condition('uid', $account
    ->id());
  $cids = $entity_query
    ->execute();
  entity_delete_multiple('comment', $cids);
}