public EntityOperations::entityInsert(EntityInterface $entity)
Hook bridge.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity that was just saved.
See also
File
- core/modules/content_moderation/src/EntityOperations.php, line 114
 
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);
    $this->setLatestRevision($entity);
  }
}
Please login to continue.