You are here

interface EntityBundleListenerInterface in Drupal 8

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

An interface for reacting to entity bundle creation and deletion.

@todo Convert to Symfony events: https://www.drupal.org/node/2332935

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 10

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. 3
EntityBundleListenerInterface::onBundleDelete public function Reacts to a bundle being deleted. 3