function flag_hook_test_entity_insert in Flag 7.3
Implements hook_entity_insert().
File
- tests/
flag_hook_test/ flag_hook_test.module, line 78  - flag_hook_test.module Test module for the hooks that Flag invokes.
 
Code
function flag_hook_test_entity_insert($entity, $type) {
  if ($type == 'flagging') {
    _flag_hook_test_record_invocation('hook_entity_insert', func_get_args(), $entity);
  }
}