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

An interface for reacting to entity bundle creation and deletion.

Hierarchy

Expanded class hierarchy of EntityBundleListenerInterface

All classes that implement EntityBundleListenerInterface

1 file declares its use of EntityBundleListenerInterface
SqlContentEntityStorage.php in core/lib/Drupal/Core/Entity/Sql/SqlContentEntityStorage.php

File

core/lib/Drupal/Core/Entity/EntityBundleListenerInterface.php, line 8

Namespace

Drupal\Core\Entity
View source
interface EntityBundleListenerInterface {

  /**
   * Reacts to a bundle being created.
   *
   * @param string $bundle
   *   The name of the bundle created.
   * @param string $entity_type_id
   *   The entity type to which the bundle is bound; e.g. 'node' or 'user'.
   */
  public function onBundleCreate($bundle, $entity_type_id);

  /**
   * Reacts to a bundle being deleted.
   *
   * This method runs before fields are deleted.
   *
   * @param string $bundle
   *   The name of the bundle being deleted.
   * @param string $entity_type_id
   *   The entity type to which the bundle is bound; e.g. 'node' or 'user'.
   */
  public function onBundleDelete($bundle, $entity_type_id);

}

Members

Namesort descending Modifiers Type Description Overrides
EntityBundleListenerInterface::onBundleCreate public function Reacts to a bundle being created.
EntityBundleListenerInterface::onBundleDelete public function Reacts to a bundle being deleted.