You are here

function install_core_entity_type_definitions in Drupal 9

Same name and namespace in other branches
  1. 8 core/includes/install.core.inc \install_core_entity_type_definitions()

Installs entity type definitions provided by core.

2 calls to install_core_entity_type_definitions()
install_config_import_batch in core/includes/install.core.inc
Creates a batch for the config importer to process.
install_profile_modules in core/includes/install.core.inc
Installs required modules via a batch process.

File

core/includes/install.core.inc, line 1612
API functions for installing Drupal.

Code

function install_core_entity_type_definitions() {
  $update_manager = \Drupal::entityDefinitionUpdateManager();
  foreach (\Drupal::entityTypeManager()
    ->getDefinitions() as $entity_type) {
    if ($entity_type
      ->getProvider() == 'core') {
      $update_manager
        ->installEntityType($entity_type);
    }
  }
}