You are here

function hook_entity_postinsert in Hook Post Action 8

Same name and namespace in other branches
  1. 7 hook_post_action.api.php \hook_entity_postinsert()

Gets called after an entity has been inserted to database.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: An entity object.

See also

hook_entity_postsave()

hook_entity_postupdate()

hook_entity_postdelete()

File

./hook_post_action.api.php, line 49
Documents API functions for hook_post_action module.

Code

function hook_entity_postinsert(EntityInterface $entity) {
  $id = $entity
    ->id();
  $entity_type = $entity
    ->getEntityTypeId();
  \Drupal::logger('hook_post_action_test')
    ->info('The inserted entity @entity_type id is @id from @function.', [
    '@id' => $id,
    '@function' => __FUNCTION__,
    '@entity_type' => $entity_type,
  ]);
}