function hook_entity_presave

7.x system.api.php hook_entity_presave($entity, $type)

Act on an entity before it is about to be created or updated.

Parameters

$entity: The entity object.

$type: The type of entity being saved (i.e. node, user, comment).

Related topics

1 function implements hook_entity_presave()

Note: this list is generated by pattern matching, so it may include some functions that are not actually implementations of this hook.

entity_crud_hook_test_entity_presave in drupal-7.x/modules/simpletest/tests/entity_crud_hook_test.module
Implements hook_entity_presave().
8 invocations of hook_entity_presave()
comment_save in drupal-7.x/modules/comment/comment.module
Accepts a submission of new or changed comment content.
field_attach_presave in drupal-7.x/modules/field/field.attach.inc
Perform necessary operations just before fields data get saved.
file_save in drupal-7.x/includes/file.inc
Saves a file object to the database.
node_save in drupal-7.x/modules/node/node.module
Saves changes to a node or adds a new node.
taxonomy_term_save in drupal-7.x/modules/taxonomy/taxonomy.module
Saves a term object to the database.

... See full list

File

drupal-7.x/modules/system/system.api.php, line 316
Hooks provided by Drupal core and the System module.

Code

function hook_entity_presave($entity, $type) {
  $entity->changed = REQUEST_TIME;
}