class EventDispatcher implements 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.
Methods
|
dispatch(string $eventName, Event $event = null)
Dispatches an event to all registered listeners. |
||
| array |
getListeners(string $eventName = null)
Gets the listeners of a specific event or all listeners. |
|
| Boolean |
hasListeners(string $eventName = null)
Checks whether an event has any registered listeners. |
|
|
addListener(string $eventName, callable $listener, integer $priority)
Adds an event listener that listens on the specified events. |
||
|
removeListener(string|array $eventName, callable $listener)
Removes an event listener from the specified events. |
||
|
addSubscriber(EventSubscriberInterface $subscriber)
Adds an event subscriber. |
||
|
removeSubscriber(EventSubscriberInterface $subscriber)
Removes an event subscriber. |
Details
at line 39
public
dispatch(string $eventName, Event $event = null)
Dispatches an event to all registered listeners.
at line 55
public array
getListeners(string $eventName = null)
Gets the listeners of a specific event or all listeners.
at line 77
public Boolean
hasListeners(string $eventName = null)
Checks whether an event has any registered listeners.
at line 87
public
addListener(string $eventName, callable $listener, integer $priority)
Adds an event listener that listens on the specified events.
at line 96
public
removeListener(string|array $eventName, callable $listener)
Removes an event listener from the specified events.
at line 114
public
addSubscriber(EventSubscriberInterface $subscriber)
Adds an event subscriber.
The subscriber is asked for all the events he is
interested in and added as a listener for these events.
at line 128
public
removeSubscriber(EventSubscriberInterface $subscriber)
Removes an event subscriber.