You are here

public function EntityTypeListener::onEntityTypeCreate in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Entity/EntityTypeListener.php \Drupal\Core\Entity\EntityTypeListener::onEntityTypeCreate()

Reacts to the creation of the entity type.

Parameters

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

Overrides EntityTypeListenerInterface::onEntityTypeCreate

File

core/lib/Drupal/Core/Entity/EntityTypeListener.php, line 64

Class

EntityTypeListener
Reacts to entity type CRUD on behalf of the Entity system.

Namespace

Drupal\Core\Entity

Code

public function onEntityTypeCreate(EntityTypeInterface $entity_type) {
  $entity_type_id = $entity_type
    ->id();

  // @todo Forward this to all interested handlers, not only storage, once
  //   iterating handlers is possible: https://www.drupal.org/node/2332857.
  $storage = $this->entityTypeManager
    ->getStorage($entity_type_id);
  if ($storage instanceof EntityTypeListenerInterface) {
    $storage
      ->onEntityTypeCreate($entity_type);
  }
  $this->entityLastInstalledSchemaRepository
    ->setLastInstalledDefinition($entity_type);
  if ($entity_type
    ->entityClassImplements(FieldableEntityInterface::class)) {
    $this->entityLastInstalledSchemaRepository
      ->setLastInstalledFieldStorageDefinitions($entity_type_id, $this->entityFieldManager
      ->getFieldStorageDefinitions($entity_type_id));
  }
  $this->eventDispatcher
    ->dispatch(EntityTypeEvents::CREATE, new EntityTypeEvent($entity_type));
  $this
    ->clearCachedDefinitions();
}