function hook_post_action_entity_delete in Hook Post Action 8
Same name and namespace in other branches
- 7 hook_post_action.module \hook_post_action_entity_delete()
Implements hook_entity_delete
File
- ./
hook_post_action.module, line 27 - Contains post hooks declaration.
Code
function hook_post_action_entity_delete(EntityInterface $entity) {
drupal_register_shutdown_function('_hook_post_action_post_save', $entity, 'delete');
}