You are here

interface EventInterface in Hook Event Dispatcher 8

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

Interface EntityEventInterface.

Hierarchy

Expanded class hierarchy of EventInterface

All classes that implement EventInterface

45 files declare their use of EventInterface
BaseBlockEvent.php in src/Event/Block/BaseBlockEvent.php
BaseEntityEvent.php in src/Event/Entity/BaseEntityEvent.php
BaseFormEvent.php in src/Event/Form/BaseFormEvent.php
BasePathEvent.php in src/Event/Path/BasePathEvent.php
BaseThemeSuggestionsEvent.php in src/Event/Theme/BaseThemeSuggestionsEvent.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();

}

Members

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