public function EntityOperations::entityInsert in Workbench Moderation 8.2
Same name and namespace in other branches
- 8 src/EntityOperations.php \Drupal\workbench_moderation\EntityOperations::entityInsert()
Hook bridge.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity that was just saved.
See also
File
- src/
EntityOperations.php, line 178
Class
- EntityOperations
- Defines a class for reacting to entity events.
Namespace
Drupal\workbench_moderationCode
public function entityInsert(EntityInterface $entity) {
if (!$this->moderationInfo
->isModeratableEntity($entity)) {
return;
}
/** ContentEntityInterface $entity */
// Update our own record keeping.
$this->tracker
->setLatestRevision($entity
->getEntityTypeId(), $entity
->id(), $entity
->language()
->getId(), $entity
->getRevisionId());
}