function rules_entity_update
Same name in other branches
- 8.x-3.x rules.module \rules_entity_update()
Implements hook_entity_update().
Related topics
File
-
modules/
events.inc, line 90
Code
function rules_entity_update($entity, $type) {
switch ($type) {
case 'comment':
rules_invoke_event('comment_update--' . $entity->node_type, $entity);
rules_invoke_event('comment_update', $entity);
break;
case 'node':
rules_invoke_event('node_update--' . $entity->type, $entity);
rules_invoke_event('node_update', $entity);
break;
case 'taxonomy_term':
rules_invoke_event('taxonomy_term_update--' . $entity->vocabulary_machine_name, $entity);
rules_invoke_event('taxonomy_term_update', $entity);
break;
case 'taxonomy_vocabulary':
case 'user':
rules_invoke_event($type . '_update', $entity);
break;
}
}