On this page
function hook_entity_update
hook_entity_update($entity, $type)
Act on entities when updated.
Parameters
$entity: The entity object.
$type: The type of entity being updated (i.e. node, user, comment).
Related topics
File
- modules/system/system.api.php, line 350
- Hooks provided by Drupal core and the System module.
Code
function hook_entity_update($entity, $type) {
// Update the entity's entry in a fictional table of all entities.
$info = entity_get_info($type);
list($id) = entity_extract_ids($type, $entity);
db_update('example_entity')
->fields(array(
'updated' => REQUEST_TIME,
))
->condition('type', $type)
->condition('id', $id)
->execute();
}
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/modules!system!system.api.php/function/hook_entity_update/7.x