function WorkspacesHooks::entityDelete

Implements hook_entity_delete().

File

core/modules/workspaces/src/Hook/WorkspacesHooks.php, line 165

Class

WorkspacesHooks
Hook implementations for workspaces.

Namespace

Drupal\workspaces\Hook

Code

public function entityDelete(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.