function EntityTestDefinitionSubscriber::onEntityTypeDelete
Same name in other branches
- 9 core/modules/system/tests/modules/entity_test/src/EntityTestDefinitionSubscriber.php \Drupal\entity_test\EntityTestDefinitionSubscriber::onEntityTypeDelete()
- 8.9.x core/modules/system/tests/modules/entity_test/src/EntityTestDefinitionSubscriber.php \Drupal\entity_test\EntityTestDefinitionSubscriber::onEntityTypeDelete()
- 11.x core/modules/system/tests/modules/entity_test/src/EntityTestDefinitionSubscriber.php \Drupal\entity_test\EntityTestDefinitionSubscriber::onEntityTypeDelete()
Overrides EntityTypeEventSubscriberTrait::onEntityTypeDelete
File
-
core/
modules/ system/ tests/ modules/ entity_test/ src/ EntityTestDefinitionSubscriber.php, line 141
Class
- EntityTestDefinitionSubscriber
- Test entity type and field storage definition event subscriber.
Namespace
Drupal\entity_testCode
public function onEntityTypeDelete(EntityTypeInterface $entity_type) {
if (!$this->entityLastInstalledSchemaRepository
->getLastInstalledDefinition($entity_type->id())) {
$this->storeDefinitionUpdate(EntityTypeEvents::DELETE);
}
$this->storeEvent(EntityTypeEvents::DELETE);
// Retrieve the live entity type definition in order to warm the static
// cache and then delete the new entity type definition, so we can test that
// the cache doesn't get stale after the event has fired.
if ($this->updateLiveDefinitions) {
$this->entityTypeManager
->getDefinition($entity_type->id());
$this->state
->set('entity_test_rev.entity_type', '');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.