function hook_entity_update

Same name and namespace in other branches
  1. 7.x modules/system/system.api.php \hook_entity_update()
  2. 9 core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_update()
  3. 8.9.x core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_update()
  4. 11.x core/lib/Drupal/Core/Entity/entity.api.php \hook_entity_update()

Respond to updates to an entity.

This hook runs once the entity storage has been updated. Note that hook implementations may not alter the stored entity data. Get the original entity object from $entity->original.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: The entity object.

See also

hook_ENTITY_TYPE_update()

Related topics

13 functions implement hook_entity_update()

Note: the procedural functions in this list are found by pattern matching, so the list may include some functions that are not actually implementations of this hook.

ContentModerationHooks::entityUpdate in core/modules/content_moderation/src/Hook/ContentModerationHooks.php
Implements hook_entity_update().
content_moderation_entity_update in core/modules/content_moderation/content_moderation.module
Implements hook_entity_update().
EditorHooks::entityUpdate in core/modules/editor/src/Hook/EditorHooks.php
Implements hook_entity_update().
EditorTestHooks::entityUpdate in core/modules/editor/tests/modules/editor_test/src/Hook/EditorTestHooks.php
Implements hook_entity_update().
editor_entity_update in core/modules/editor/editor.module
Implements hook_entity_update().

... See full list

File

core/lib/Drupal/Core/Entity/entity.api.php, line 1221

Code

function hook_entity_update(\Drupal\Core\Entity\EntityInterface $entity) {
  // Update the entity's entry in a fictional table of all entities.
  \Drupal::database()->update('example_entity')
    ->fields([
    'updated' => \Drupal::time()->getRequestTime(),
  ])
    ->condition('type', $entity->getEntityTypeId())
    ->condition('id', $entity->id())
    ->execute();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.