You are here

function comment_field_config_delete in Zircon Profile 8.0

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

Implements hook_ENTITY_TYPE_delete() for 'field_config'.

File

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

Code

function comment_field_config_delete(FieldConfigInterface $field) {
  if ($field
    ->getType() == 'comment') {

    // Delete all comments that used by the entity bundle.
    $entity_query = \Drupal::entityQuery('comment');
    $entity_query
      ->condition('entity_type', $field
      ->getEntityTypeId());
    $entity_query
      ->condition('field_name', $field
      ->getName());
    $cids = $entity_query
      ->execute();
    entity_delete_multiple('comment', $cids);
  }
}