function hook_entity_postupdate in Hook Post Action 8
Same name and namespace in other branches
- 7 hook_post_action.api.php \hook_entity_postupdate()
Gets called after an entity has been updated in database.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: An entity object.
See also
File
- ./
hook_post_action.api.php, line 73 - Documents API functions for hook_post_action module.
Code
function hook_entity_postupdate(EntityInterface $entity) {
$id = $entity
->id();
$entity_type = $entity
->getEntityTypeId();
\Drupal::logger('hook_post_action_test')
->info('The updated entity @entity_type id is @id from @function.', [
'@id' => $id,
'@function' => __FUNCTION__,
'@entity_type' => $entity_type,
]);
}