You are here

function config_translation_test_entity_type_alter in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.module \config_translation_test_entity_type_alter()
  2. 9 core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.module \config_translation_test_entity_type_alter()

Implements hook_entity_type_alter().

File

core/modules/config_translation/tests/modules/config_translation_test/config_translation_test.module, line 24
Configuration Translation Test module.

Code

function config_translation_test_entity_type_alter(array &$entity_types) {

  // Remove entity definition for these entity types from config_test module.
  unset($entity_types['config_test_no_status']);
  unset($entity_types['config_query_test']);
}