You are here

function hook_post_action_entity_delete in Hook Post Action 7

Same name and namespace in other branches
  1. 8 hook_post_action.module \hook_post_action_entity_delete()

Parameters

$entity:

$type:

File

./hook_post_action.module, line 38

Code

function hook_post_action_entity_delete($entity, $type) {
  $entity_info = array(
    'entity' => $entity,
    'type' => $type,
    'operation' => 'delete',
  );
  drupal_register_shutdown_function('_hook_post_action_post_save', $entity_info);
}