You are here

function workspaces_entity_insert in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/workspaces/workspaces.module \workspaces_entity_insert()
  2. 9 core/modules/workspaces/workspaces.module \workspaces_entity_insert()

Implements hook_entity_insert().

File

core/modules/workspaces/workspaces.module, line 109
Provides full-site preview functionality for content staging.

Code

function workspaces_entity_insert(EntityInterface $entity) {
  if ($entity
    ->getEntityTypeId() === 'workspace') {
    \Drupal::service('workspaces.association')
      ->workspaceInsert($entity);
    \Drupal::service('workspaces.repository')
      ->resetCache();
  }
  return \Drupal::service('class_resolver')
    ->getInstanceFromDefinition(EntityOperations::class)
    ->entityInsert($entity);
}