function workspaces_entity_delete

Same name and namespace in other branches
  1. 10 core/modules/workspaces/workspaces.module \workspaces_entity_delete()

Implements hook_entity_delete().

File

core/modules/workspaces/workspaces.module, line 181

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.