public function FieldStorageDefinitionListener::onFieldStorageDefinitionCreate

public FieldStorageDefinitionListener::onFieldStorageDefinitionCreate(FieldStorageDefinitionInterface $storage_definition)

Reacts to the creation of a field storage definition.

Parameters

\Drupal\Core\Field\FieldStorageDefinitionInterface $storage_definition: The definition being created.

Overrides FieldStorageDefinitionListenerInterface::onFieldStorageDefinitionCreate

File

core/lib/Drupal/Core/Field/FieldStorageDefinitionListener.php, line 67

Class

FieldStorageDefinitionListener
Reacts to field storage definition CRUD on behalf of the Entity system.

Namespace

Drupal\Core\Field

Code

public function onFieldStorageDefinitionCreate(FieldStorageDefinitionInterface $storage_definition) {
  $entity_type_id = $storage_definition->getTargetEntityTypeId();

  // @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 FieldStorageDefinitionListenerInterface) {
    $storage->onFieldStorageDefinitionCreate($storage_definition);
  }

  $this->eventDispatcher->dispatch(FieldStorageDefinitionEvents::CREATE, new FieldStorageDefinitionEvent($storage_definition));

  $this->entityLastInstalledSchemaRepository->setLastInstalledFieldStorageDefinition($storage_definition);
  $this->entityFieldManager->clearCachedFieldDefinitions();
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Field!FieldStorageDefinitionListener.php/function/FieldStorageDefinitionListener::onFieldStorageDefinitionCreate/8.1.x