function workspaces_entity_delete
Implements hook_entity_delete().
File
-
core/
modules/ workspaces/ workspaces.module, line 188
Code
function workspaces_entity_delete(EntityInterface $entity) {
if (\Drupal::service('workspaces.information')->isEntityTypeSupported($entity->getEntityType())) {
\Drupal::service('workspaces.association')->deleteAssociations(NULL, $entity->getEntityTypeId(), [
$entity->id(),
]);
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.