You are here

public function EntityLastInstalledSchemaRepository::setLastInstalledDefinition in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Entity/EntityLastInstalledSchemaRepository.php \Drupal\Core\Entity\EntityLastInstalledSchemaRepository::setLastInstalledDefinition()

Stores the entity type definition in the application state.

Parameters

\Drupal\Core\Entity\EntityTypeInterface $entity_type: The entity type definition.

Return value

$this

Overrides EntityLastInstalledSchemaRepositoryInterface::setLastInstalledDefinition

File

core/lib/Drupal/Core/Entity/EntityLastInstalledSchemaRepository.php, line 95

Class

EntityLastInstalledSchemaRepository
Provides a repository for installed entity definitions.

Namespace

Drupal\Core\Entity

Code

public function setLastInstalledDefinition(EntityTypeInterface $entity_type) {
  $entity_type_id = $entity_type
    ->id();
  $this->keyValueFactory
    ->get('entity.definitions.installed')
    ->set($entity_type_id . '.entity_type', $entity_type);
  $this->cacheBackend
    ->delete('entity_type_definitions.installed');
  $this->entityTypeDefinitions = NULL;
  return $this;
}