function entity_test_update_entity_type_alter

Same name and namespace in other branches
  1. 9 core/modules/system/tests/modules/entity_test_update/entity_test_update.module \entity_test_update_entity_type_alter()
  2. 10 core/modules/system/tests/modules/entity_test_update/entity_test_update.module \entity_test_update_entity_type_alter()
  3. 11.x core/modules/system/tests/modules/entity_test_update/entity_test_update.module \entity_test_update_entity_type_alter()

Implements hook_entity_type_alter().

File

core/modules/system/tests/modules/entity_test_update/entity_test_update.module, line 44

Code

function entity_test_update_entity_type_alter(array &$entity_types) {
    // Allow entity_test_update tests to override the entity type definition.
    $entity_type = \Drupal::state()->get('entity_test_update.entity_type', $entity_types['entity_test_update']);
    if ($entity_type !== 'null') {
        $entity_types['entity_test_update'] = $entity_type;
    }
    else {
        unset($entity_types['entity_test_update']);
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.