You are here

function entity_test_entity_predelete in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_test/entity_test.module \entity_test_entity_predelete()

Implements hook_entity_predelete().

File

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

Code

function entity_test_entity_predelete(EntityInterface $entity) {
  if (isset($GLOBALS['entity_test_throw_exception'])) {
    throw new Exception('Entity predelete exception', 2);
  }
}