function Drupal::entityDefinitionUpdateManager
Returns the entity definition update manager.
Return value
\Drupal\Core\Entity\EntityDefinitionUpdateManagerInterface The entity definition update manager.
6 calls to Drupal::entityDefinitionUpdateManager()
- install_core_entity_type_definitions in core/
includes/ install.core.inc - Installs entity type definitions provided by core.
- ModuleInstaller::install in core/
lib/ Drupal/ Core/ Extension/ ModuleInstaller.php - Installs a given list of modules.
- ModuleInstaller::uninstall in core/
lib/ Drupal/ Core/ Extension/ ModuleInstaller.php - Uninstalls a given list of modules.
- SystemHooks::modulesUninstalled in core/
modules/ system/ src/ Hook/ SystemHooks.php - Implements hook_modules_uninstalled().
- WorkspacesHooks::modulePreinstall in core/
modules/ workspaces/ src/ Hook/ WorkspacesHooks.php - Implements hook_module_preinstall().
File
-
core/
lib/ Drupal.php, line 724
Class
- Drupal
- Static Service Container wrapper.
Code
public static function entityDefinitionUpdateManager() {
return static::getContainer()->get('entity.definition_update_manager');
}