function hook_post_action_example_node_postinsert in Hook Post Action 8
Same name and namespace in other branches
- 7 hook_post_action_example/hook_post_action_example.module \hook_post_action_example_node_postinsert()
 
Implements hook_ENTITY_TYPE_postinsert().
File
- hook_post_action_example/
hook_post_action_example.module, line 68  - A working example for hook_post_action module.
 
Code
function hook_post_action_example_node_postinsert(EntityInterface $entity) {
  $id = $entity
    ->id();
  $bundle = $entity
    ->bundle();
  \Drupal::logger('hook_post_action_test')
    ->info("The inserted node {$bundle} id is {$id} from " . __FUNCTION__);
}