Same name and namespace in other branches
  1. 8.9.x core/lib/Drupal/Core/Entity/EntityBundleListener.php \Drupal\Core\Entity\EntityBundleListener
  2. 9 core/lib/Drupal/Core/Entity/EntityBundleListener.php \Drupal\Core\Entity\EntityBundleListener

Reacts to entity bundle CRUD on behalf of the Entity system.

Hierarchy

  • class \Drupal\Core\Entity\EntityBundleListener implements \Drupal\Core\Entity\EntityBundleListenerInterface

Expanded class hierarchy of EntityBundleListener

1 string reference to 'EntityBundleListener'
core.services.yml in core/core.services.yml
core/core.services.yml
1 service uses EntityBundleListener
entity_bundle.listener in core/core.services.yml
Drupal\Core\Entity\EntityBundleListener

File

core/lib/Drupal/Core/Entity/EntityBundleListener.php, line 10

Namespace

Drupal\Core\Entity
View source
class EntityBundleListener implements EntityBundleListenerInterface {

  /**
   * The entity type manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * The entity type bundle info.
   *
   * @var \Drupal\Core\Entity\EntityTypeBundleInfoInterface
   */
  protected $entityTypeBundleInfo;

  /**
   * The entity field manager.
   *
   * @var \Drupal\Core\Entity\EntityFieldManagerInterface
   */
  protected $entityFieldManager;

  /**
   * The module handler.
   *
   * @var \Drupal\Core\Extension\ModuleHandlerInterface
   */
  protected $moduleHandler;

  /**
   * Constructs a new EntityBundleListener.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity type manager.
   * @param \Drupal\Core\Entity\EntityTypeBundleInfoInterface $entity_type_bundle_info
   *   The entity type bundle info.
   * @param \Drupal\Core\Entity\EntityFieldManagerInterface $entity_field_manager
   *   The entity field manager.
   * @param \Drupal\Core\Extension\ModuleHandlerInterface $module_handler
   *   The module handler.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager, EntityTypeBundleInfoInterface $entity_type_bundle_info, EntityFieldManagerInterface $entity_field_manager, ModuleHandlerInterface $module_handler) {
    $this->entityTypeManager = $entity_type_manager;
    $this->entityTypeBundleInfo = $entity_type_bundle_info;
    $this->entityFieldManager = $entity_field_manager;
    $this->moduleHandler = $module_handler;
  }

  /**
   * {@inheritdoc}
   */
  public function onBundleCreate($bundle, $entity_type_id) {
    $this->entityTypeBundleInfo
      ->clearCachedBundles();

    // Notify the entity storage.
    $storage = $this->entityTypeManager
      ->getStorage($entity_type_id);
    if ($storage instanceof EntityBundleListenerInterface) {
      $storage
        ->onBundleCreate($bundle, $entity_type_id);
    }

    // Invoke hook_entity_bundle_create() hook.
    $this->moduleHandler
      ->invokeAll('entity_bundle_create', [
      $entity_type_id,
      $bundle,
    ]);
    $this->entityFieldManager
      ->clearCachedFieldDefinitions();
  }

  /**
   * {@inheritdoc}
   */
  public function onBundleDelete($bundle, $entity_type_id) {
    $this->entityTypeBundleInfo
      ->clearCachedBundles();

    // Notify the entity storage.
    $storage = $this->entityTypeManager
      ->getStorage($entity_type_id);
    if ($storage instanceof EntityBundleListenerInterface) {
      $storage
        ->onBundleDelete($bundle, $entity_type_id);
    }

    // Invoke hook_entity_bundle_delete() hook.
    $this->moduleHandler
      ->invokeAll('entity_bundle_delete', [
      $entity_type_id,
      $bundle,
    ]);
    $this->entityFieldManager
      ->clearCachedFieldDefinitions();
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityBundleListener::$entityFieldManager protected property The entity field manager.
EntityBundleListener::$entityTypeBundleInfo protected property The entity type bundle info.
EntityBundleListener::$entityTypeManager protected property The entity type manager.
EntityBundleListener::$moduleHandler protected property The module handler.
EntityBundleListener::onBundleCreate public function
EntityBundleListener::onBundleDelete public function
EntityBundleListener::__construct public function Constructs a new EntityBundleListener.