You are here

function hook_post_action_entity_insert in Hook Post Action 8

Same name and namespace in other branches
  1. 7 hook_post_action.module \hook_post_action_entity_insert()

Implements hook_entity_insert().

File

./hook_post_action.module, line 13
Contains post hooks declaration.

Code

function hook_post_action_entity_insert(EntityInterface $entity) {
  drupal_register_shutdown_function('_hook_post_action_post_save', $entity, 'insert');
}