function entity_test_entity_presave

Implements hook_entity_presave()

File

drupal/core/modules/system/tests/modules/entity_test/entity_test.module, line 407
Test module for the entity API providing several entity types for testing.

Code

function entity_test_entity_presave(EntityInterface $entity) {
  if (isset($GLOBALS['entity_test_throw_exception'])) {
    throw new Exception('Entity presave exception', 1);
  }
}