function QueryFactory::onConfigDelete

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::onConfigDelete()
  2. 8.9.x core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::onConfigDelete()
  3. 10 core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php \Drupal\Core\Config\Entity\Query\QueryFactory::onConfigDelete()

Removes configuration entity from key store.

Parameters

\Drupal\Core\Config\ConfigCrudEvent $event: The configuration event.

File

core/lib/Drupal/Core/Config/Entity/Query/QueryFactory.php, line 253

Class

QueryFactory
Provides a factory for creating entity query objects for the config backend.

Namespace

Drupal\Core\Config\Entity\Query

Code

public function onConfigDelete(ConfigCrudEvent $event) {
  $saved_config = $event->getConfig();
  $entity_type_id = $this->configManager
    ->getEntityTypeIdByName($saved_config->getName());
  if ($entity_type_id) {
    $entity_type = $this->configManager
      ->getEntityTypeManager()
      ->getDefinition($entity_type_id);
    $this->deleteConfigKeyStore($entity_type, $saved_config);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.