function hook_entity_update in Zircon Profile 8.0
Same name and namespace in other branches
- 8 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.
Parameters
\Drupal\Core\Entity\EntityInterface $entity: The entity object.
See also
Related topics
2 functions implement hook_entity_update()
Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.
- editor_entity_update in core/
modules/ editor/ editor.module - Implements hook_entity_update().
- entity_crud_hook_test_entity_update in core/
modules/ system/ tests/ modules/ entity_crud_hook_test/ entity_crud_hook_test.module - Implements hook_entity_update().
File
- core/
lib/ Drupal/ Core/ Entity/ entity.api.php, line 975 - Hooks and documentation related to entities.
Code
function hook_entity_update(Drupal\Core\Entity\EntityInterface $entity) {
// Update the entity's entry in a fictional table of all entities.
db_update('example_entity')
->fields(array(
'updated' => REQUEST_TIME,
))
->condition('type', $entity
->getEntityTypeId())
->condition('id', $entity
->id())
->execute();
}