You are here

function content_sync_entity_insert in Content Synchronization 8

Same name and namespace in other branches
  1. 8.2 content_sync.module \content_sync_entity_insert()
  2. 3.0.x content_sync.module \content_sync_entity_insert()

hook_entity_insert Keep the content snapshot table synced

File

./content_sync.module, line 228
Allows site administrators to modify content.

Code

function content_sync_entity_insert(Drupal\Core\Entity\EntityInterface $entity) {
  content_sync_entity_update($entity);
}