function layout_builder_entity_delete in Drupal 9
Same name and namespace in other branches
- 8 core/modules/layout_builder/layout_builder.module \layout_builder_entity_delete()
- 10 core/modules/layout_builder/layout_builder.module \layout_builder_entity_delete()
Implements hook_entity_delete().
File
- core/
modules/ layout_builder/ layout_builder.module, line 213 - Provides hook implementations for Layout Builder.
Code
function layout_builder_entity_delete(EntityInterface $entity) {
if (\Drupal::moduleHandler()
->moduleExists('block_content')) {
/** @var \Drupal\layout_builder\InlineBlockEntityOperations $entity_operations */
$entity_operations = \Drupal::classResolver(InlineBlockEntityOperations::class);
$entity_operations
->handleEntityDelete($entity);
}
}