You are here

function rules_entity_insert in Rules 7.2

Same name and namespace in other branches
  1. 8.3 rules.module \rules_entity_insert()

Implements hook_entity_insert().

Related topics

File

modules/events.inc, line 117
Invokes events on behalf core modules.

Code

function rules_entity_insert($entity, $type) {
  switch ($type) {
    case 'comment':
      rules_invoke_event('comment_insert--' . $entity->node_type, $entity);
      rules_invoke_event('comment_insert', $entity);
      break;
    case 'node':
      rules_invoke_event('node_insert--' . $entity->type, $entity);
      rules_invoke_event('node_insert', $entity);
      break;
    case 'taxonomy_term':
      rules_invoke_event('taxonomy_term_insert--' . $entity->vocabulary_machine_name, $entity);
      rules_invoke_event('taxonomy_term_insert', $entity);
      break;
    case 'taxonomy_vocabulary':
    case 'user':
      rules_invoke_event($type . '_insert', $entity);
      break;
  }
}