public function InlineBlockEntityOperations::handleEntityDelete in Drupal 8
Same name and namespace in other branches
- 9 core/modules/layout_builder/src/InlineBlockEntityOperations.php \Drupal\layout_builder\InlineBlockEntityOperations::handleEntityDelete()
- 10 core/modules/layout_builder/src/InlineBlockEntityOperations.php \Drupal\layout_builder\InlineBlockEntityOperations::handleEntityDelete()
Handles entity tracking on deleting a parent entity.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The parent entity.
File
- core/
modules/ layout_builder/ src/ InlineBlockEntityOperations.php, line 156
Class
- InlineBlockEntityOperations
- Defines a class for reacting to entity events related to Inline Blocks.
Namespace
Drupal\layout_builderCode
public function handleEntityDelete(EntityInterface $entity) {
// @todo In https://www.drupal.org/node/3008943 call
// \Drupal\layout_builder\LayoutEntityHelperTrait::isLayoutCompatibleEntity().
$this->usage
->removeByLayoutEntity($entity);
}