interface EventDispatcherInterface

The EventDispatcherInterface is the central point of Symfony's event listener system. Listeners are registered on the manager and events are dispatched through the manager.

@author Bernhard Schussek <bschussek@gmail.com>

@api

Hierarchy

Expanded class hierarchy of EventDispatcherInterface

All classes that implement EventDispatcherInterface

12 files declare their use of EventDispatcherInterface
AbstractHasDispatcher.php in drupal/core/vendor/guzzle/common/Guzzle/Common/AbstractHasDispatcher.php
ConfigImporter.php in drupal/core/lib/Drupal/Core/Config/ConfigImporter.php
Contains \Drupal\Core\Config\ConfigImporter.
ContainerAwareHttpKernel.php in drupal/core/vendor/symfony/http-kernel/Symfony/Component/HttpKernel/DependencyInjection/ContainerAwareHttpKernel.php
HasDispatcherInterface.php in drupal/core/vendor/guzzle/common/Guzzle/Common/HasDispatcherInterface.php
HttpKernel.php in drupal/core/lib/Drupal/Core/HttpKernel.php
Definition of Drupal\Core\HttpKernel.

... See full list

File

drupal/core/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/EventDispatcherInterface.php, line 23

Namespace

Symfony\Component\EventDispatcher
View source
interface EventDispatcherInterface {

  /**
   * Dispatches an event to all registered listeners.
   *
   * @param string $eventName The name of the event to dispatch. The name of
   *                          the event is the name of the method that is
   *                          invoked on listeners.
   * @param Event $event The event to pass to the event handlers/listeners.
   *                          If not supplied, an empty Event instance is created.
   *
   * @return Event
   *
   * @api
   */
  public function dispatch($eventName, Event $event = null);

  /**
   * Adds an event listener that listens on the specified events.
   *
   * @param string   $eventName The event to listen on
   * @param callable $listener  The listener
   * @param integer  $priority  The higher this value, the earlier an event
   *                            listener will be triggered in the chain (defaults to 0)
   *
   * @api
   */
  public function addListener($eventName, $listener, $priority = 0);

  /**
   * Adds an event subscriber.
   *
   * The subscriber is asked for all the events he is
   * interested in and added as a listener for these events.
   *
   * @param EventSubscriberInterface $subscriber The subscriber.
   *
   * @api
   */
  public function addSubscriber(EventSubscriberInterface $subscriber);

  /**
   * Removes an event listener from the specified events.
   *
   * @param string|array $eventName The event(s) to remove a listener from
   * @param callable     $listener  The listener to remove
   */
  public function removeListener($eventName, $listener);

  /**
   * Removes an event subscriber.
   *
   * @param EventSubscriberInterface $subscriber The subscriber
   */
  public function removeSubscriber(EventSubscriberInterface $subscriber);

  /**
   * Gets the listeners of a specific event or all listeners.
   *
   * @param string $eventName The name of the event
   *
   * @return array The event listeners for the specified event, or all event listeners by event name
   */
  public function getListeners($eventName = null);

  /**
   * Checks whether an event has any registered listeners.
   *
   * @param string $eventName The name of the event
   *
   * @return Boolean true if the specified event has any listeners, false otherwise
   */
  public function hasListeners($eventName = null);

}

Members

Namesort descending Modifiers Type Description Overrides
EventDispatcherInterface::addListener public function Adds an event listener that listens on the specified events. 3
EventDispatcherInterface::addSubscriber public function Adds an event subscriber. 3
EventDispatcherInterface::dispatch public function Dispatches an event to all registered listeners. 3
EventDispatcherInterface::getListeners public function Gets the listeners of a specific event or all listeners. 3
EventDispatcherInterface::hasListeners public function Checks whether an event has any registered listeners. 3
EventDispatcherInterface::removeListener public function Removes an event listener from the specified events. 3
EventDispatcherInterface::removeSubscriber public function Removes an event subscriber. 3