function audit_log_entity_insert in Audit Log 7
Same name and namespace in other branches
- 8.2 audit_log.module \audit_log_entity_insert()
- 8 audit_log.module \audit_log_entity_insert()
Implements hook_entity_insert().
File
- ./
audit_log.module, line 97 - Hook implemenations for the Audit log module.
Code
function audit_log_entity_insert($entity, $entity_type) {
audit_log($entity, $entity_type, 'insert');
}