1 entity_crud_hook_test.module entity_crud_hook_test_entity_presave($entity, $type)

Implements hook_entity_presave().

File

core/modules/entity/tests/entity_crud_hook_test/entity_crud_hook_test.module, line 10
Test module for the Entity CRUD API.

Code

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