You are here

public function EntityOperations::entityInsert in Drupal 9

Same name in this branch
  1. 9 core/modules/content_moderation/src/EntityOperations.php \Drupal\content_moderation\EntityOperations::entityInsert()
  2. 9 core/modules/workspaces/src/EntityOperations.php \Drupal\workspaces\EntityOperations::entityInsert()
Same name and namespace in other branches
  1. 8 core/modules/content_moderation/src/EntityOperations.php \Drupal\content_moderation\EntityOperations::entityInsert()

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity that was just saved.

See also

hook_entity_insert()

File

core/modules/content_moderation/src/EntityOperations.php, line 135

Class

EntityOperations
Defines a class for reacting to entity events.

Namespace

Drupal\content_moderation

Code

public function entityInsert(EntityInterface $entity) {
  if ($this->moderationInfo
    ->isModeratedEntity($entity)) {
    $this
      ->updateOrCreateFromEntity($entity);
  }
}