function entity_crud_hook_test_entity_update

7.x entity_crud_hook_test.module entity_crud_hook_test_entity_update($entity, $type)

Implements hook_entity_update().

File

drupal-7.x/modules/simpletest/tests/entity_crud_hook_test.module, line 158
Test module for the Entity CRUD API.

Code

function entity_crud_hook_test_entity_update($entity, $type) {
  $_SESSION['entity_crud_hook_test'][] = (__FUNCTION__ . ' called for type ' . $type);
}