You are here

public static function Drupal::entityDefinitionUpdateManager in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal.php \Drupal::entityDefinitionUpdateManager()

Returns the entity definition update manager.

Return value

\Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface The entity definition update manager.

13 calls to Drupal::entityDefinitionUpdateManager()
contact_storage_test_install in core/modules/contact/tests/modules/contact_storage_test/contact_storage_test.install
Implements hook_install().
EntityDefinitionUpdateTest::testBundleFieldUpdateWithEntityTypeSchemaUpdate in core/tests/Drupal/KernelTests/Core/Entity/EntityDefinitionUpdateTest.php
Tests updating a bundle field when the entity type schema has changed.
entity_test_update_8001 in core/modules/system/tests/modules/entity_test/update/entity_definition_updates_8001.inc
Makes the 'user_id' field multiple and migrate its data.
entity_test_update_8002 in core/modules/system/tests/modules/entity_test/update/entity_definition_updates_8002.inc
Makes the 'user_id' field single and migrate its data.
field_test_entity_info_translatable in core/modules/field/tests/modules/field_test/field_test.entity.inc
Helper function to enable entity translations.

... See full list

File

core/lib/Drupal.php, line 722

Class

Drupal
Static Service Container wrapper.

Code

public static function entityDefinitionUpdateManager() {
  return static::getContainer()
    ->get('entity.definition_update_manager');
}