[ Index ]

PHP Cross Reference of phpBB-3.1.12-deutsch

title

Body

[close]

/vendor/symfony/event-dispatcher/Symfony/Component/EventDispatcher/ -> Event.php (summary)

(no description)

File Size: 108 lines (3 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

Event:: (6 methods):
  isPropagationStopped()
  stopPropagation()
  setDispatcher()
  getDispatcher()
  getName()
  setName()


Class: Event  - X-Ref

Event is the base class for classes containing event data.

This class contains no event data. It is used by events that do not pass
state information to an event handler when an event is raised.

You can call the method stopPropagation() to abort the execution of
further listeners in your event listener.

isPropagationStopped()   X-Ref
Returns whether further event listeners should be triggered.

return: bool Whether propagation was already stopped for this event.

stopPropagation()   X-Ref
Stops the propagation of the event to further event listeners.

If multiple event listeners are connected to the same event, no
further event listener will be triggered once any trigger calls
stopPropagation().

setDispatcher(EventDispatcherInterface $dispatcher)   X-Ref
Stores the EventDispatcher that dispatches this Event.

param: EventDispatcherInterface $dispatcher

getDispatcher()   X-Ref
Returns the EventDispatcher that dispatches this Event.

return: EventDispatcherInterface

getName()   X-Ref
Gets the event's name.

return: string

setName($name)   X-Ref
Sets the event's name property.

param: string $name The event name.



Generated: Thu Jan 11 00:25:41 2018 Cross-referenced by PHPXref 0.7.1