You are here

class EntityBundleFieldInfoAlterEvent in Hook Event Dispatcher 8

Class EntityBundleFieldInfoAlterEvent.

Hierarchy

Expanded class hierarchy of EntityBundleFieldInfoAlterEvent

2 files declare their use of EntityBundleFieldInfoAlterEvent
EntityBundleFieldInfoAlterEventTest.php in tests/src/Unit/EntityType/EntityBundleFieldInfoAlterEventTest.php
hook_event_dispatcher.module in ./hook_event_dispatcher.module
Hook event dispatcher module.

File

src/Event/EntityType/EntityBundleFieldInfoAlterEvent.php, line 13

Namespace

Drupal\hook_event_dispatcher\Event\EntityType
View source
class EntityBundleFieldInfoAlterEvent extends Event implements EventInterface {

  /**
   * Field info.
   *
   * @var array
   */
  private $fields;

  /**
   * The entity type.
   *
   * @var \Drupal\Core\Entity\EntityTypeInterface
   */
  private $entityType;

  /**
   * The bundle name.
   *
   * @var string
   */
  private $bundle;

  /**
   * EntityExtraFieldInfoAlterEvent constructor.
   *
   * @param array $fields
   *   Extra field info.
   * @param \Drupal\Core\Entity\EntityTypeInterface $entityType
   *   The entity type.
   * @param string $bundle
   *   The bundle name.
   */
  public function __construct(array &$fields, EntityTypeInterface $entityType, $bundle) {
    $this->fields =& $fields;
    $this->entityType = $entityType;
    $this->bundle = $bundle;
  }

  /**
   * {@inheritdoc}
   */
  public function getDispatcherType() {
    return HookEventDispatcherInterface::ENTITY_BUNDLE_FIELD_INFO_ALTER;
  }

  /**
   * Get the field info.
   *
   * @return array
   *   Extra field info.
   */
  public function &getFields() {
    return $this->fields;
  }

  /**
   * Get the EntityType.
   *
   * @return \Drupal\Core\Entity\EntityTypeInterface
   *   The EntityType.
   */
  public function getEntityType() {
    return $this->entityType;
  }

  /**
   * Gets the Bundle.
   *
   * @return string
   *   The Bundle.
   */
  public function getBundle() {
    return $this->bundle;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityBundleFieldInfoAlterEvent::$bundle private property The bundle name.
EntityBundleFieldInfoAlterEvent::$entityType private property The entity type.
EntityBundleFieldInfoAlterEvent::$fields private property Field info.
EntityBundleFieldInfoAlterEvent::getBundle public function Gets the Bundle.
EntityBundleFieldInfoAlterEvent::getDispatcherType public function Get the dispatcher type. Overrides EventInterface::getDispatcherType
EntityBundleFieldInfoAlterEvent::getEntityType public function Get the EntityType.
EntityBundleFieldInfoAlterEvent::getFields public function Get the field info.
EntityBundleFieldInfoAlterEvent::__construct public function EntityExtraFieldInfoAlterEvent constructor.