EntityBundleFieldInfoAlterEvent.php in Hook Event Dispatcher 3.x
File
modules/core_event_dispatcher/src/Event/Entity/EntityBundleFieldInfoAlterEvent.php
View source
<?php
namespace Drupal\core_event_dispatcher\Event\Entity;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\hook_event_dispatcher\Event\EventInterface;
use Drupal\hook_event_dispatcher\HookEventDispatcherInterface;
use Symfony\Component\EventDispatcher\Event;
class EntityBundleFieldInfoAlterEvent extends Event implements EventInterface {
private $fields;
private $entityType;
private $bundle;
public function __construct(array &$fields, EntityTypeInterface $entityType, string $bundle) {
$this->fields =& $fields;
$this->entityType = $entityType;
$this->bundle = $bundle;
}
public function getDispatcherType() : string {
return HookEventDispatcherInterface::ENTITY_BUNDLE_FIELD_INFO_ALTER;
}
public function &getFields() : array {
return $this->fields;
}
public function getEntityType() : EntityTypeInterface {
return $this->entityType;
}
public function getBundle() : string {
return $this->bundle;
}
}