You are here

interface EventInterface in Hook Event Dispatcher 3.x

Same name and namespace in other branches
  1. 8.2 src/Event/EventInterface.php \Drupal\hook_event_dispatcher\Event\EventInterface
  2. 8 src/Event/EventInterface.php \Drupal\hook_event_dispatcher\Event\EventInterface

Interface EntityEventInterface.

Hierarchy

Expanded class hierarchy of EventInterface

All classes that implement EventInterface

52 files declare their use of EventInterface
AbstractEntityEvent.php in modules/core_event_dispatcher/src/Event/Entity/AbstractEntityEvent.php
AbstractFieldSettingsSummaryFormEvent.php in modules/field_event_dispatcher/src/Event/Field/AbstractFieldSettingsSummaryFormEvent.php
AbstractFieldThirdPartySettingsFormEvent.php in modules/field_event_dispatcher/src/Event/Field/AbstractFieldThirdPartySettingsFormEvent.php
AbstractFormEvent.php in modules/core_event_dispatcher/src/Event/Form/AbstractFormEvent.php
AbstractPathEvent.php in modules/path_event_dispatcher/src/Event/Path/AbstractPathEvent.php

... See full list

File

src/Event/EventInterface.php, line 8

Namespace

Drupal\hook_event_dispatcher\Event
View source
interface EventInterface {

  /**
   * Get the dispatcher type.
   *
   * @return string
   *   The dispatcher type.
   */
  public function getDispatcherType() : string;

}

Members

Namesort descending Modifiers Type Description Overrides
EventInterface::getDispatcherType public function Get the dispatcher type. 75