function comment_field_config_delete
Same name in other branches
- 9 core/modules/comment/comment.module \comment_field_config_delete()
- 10 core/modules/comment/comment.module \comment_field_config_delete()
- 11.x core/modules/comment/comment.module \comment_field_config_delete()
Implements hook_ENTITY_TYPE_delete() for 'field_config'.
File
-
core/
modules/ comment/ comment.module, line 201
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();
$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.