public static function Drupal::entityDefinitionUpdateManager in Drupal 10
Same name and namespace in other branches
- 8 core/lib/Drupal.php \Drupal::entityDefinitionUpdateManager()
- 9 core/lib/Drupal.php \Drupal::entityDefinitionUpdateManager()
Returns the entity definition update manager.
Return value
\Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface The entity definition update manager.
16 calls to Drupal::entityDefinitionUpdateManager()
- contact_storage_test_install in core/
modules/ contact/ tests/ modules/ contact_storage_test/ contact_storage_test.install - Implements hook_install().
- EntityDefinitionTestTrait::applyEntityUpdates in core/
modules/ system/ tests/ src/ Functional/ Entity/ Traits/ EntityDefinitionTestTrait.php - Applies all the detected valid changes.
- EntityDefinitionUpdateTest::testBundleFieldUpdateWithEntityTypeSchemaUpdate in core/
tests/ Drupal/ KernelTests/ Core/ Entity/ EntityDefinitionUpdateTest.php - Tests updating a bundle field when the entity type schema has changed.
- EntityTestTest::createEntity in core/
modules/ jsonapi/ tests/ src/ Functional/ EntityTestTest.php - 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.
File
- core/
lib/ Drupal.php, line 711
Class
- Drupal
- Static Service Container wrapper.
Code
public static function entityDefinitionUpdateManager() {
return static::getContainer()
->get('entity.definition_update_manager');
}