You are here

function hook_post_action_example_entity_postinsert in Hook Post Action 8

Same name and namespace in other branches
  1. 7 hook_post_action_example/hook_post_action_example.module \hook_post_action_example_entity_postinsert()

Implements hook_entity_postinsert().

File

hook_post_action_example/hook_post_action_example.module, line 24
A working example for hook_post_action module.

Code

function hook_post_action_example_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__);
}