You are here

function hook_entity_postsave in Hook Post Action 7

Same name and namespace in other branches
  1. 8 hook_post_action.api.php \hook_entity_postsave()

Gets called after an entity has been inserted/updated/deleted to database.

Parameters

$entity: An entity object

string $entity: An string containing entity type name

string $op: An string containing the operating that's taking place (insert/update/delete)

See also

hook_entity_postinsert()

hook_entity_postupdate()

hook_entity_postdelete()

1 invocation of hook_entity_postsave()
_hook_post_action_post_save in ./hook_post_action.module

File

./hook_post_action.api.php, line 22
Documents API functions for hook_post_action module.

Code

function hook_entity_postsave($entity, $entity_type, $op) {
  list($id) = entity_extract_ids($entity_type, $entity);
  watchdog('hook_post_action_test', 'The @op entity $type id is @id from @function.', array(
    '@op' => t($op . 'd'),
    '@id' => $id,
    '@type' => $entity_type,
    '@function' => __FUNCTION__,
  ));
}