You are here

function audit_log_entity_update in Audit Log 7

Same name and namespace in other branches
  1. 8.2 audit_log.module \audit_log_entity_update()
  2. 8 audit_log.module \audit_log_entity_update()

Implements hook_entity_update().

File

./audit_log.module, line 104
Hook implemenations for the Audit log module.

Code

function audit_log_entity_update($entity, $entity_type) {
  audit_log($entity, $entity_type, 'update');
}