[ Index ]

PHP Cross Reference of phpBB-3.2.11-deutsch

title

Body

[close]

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

(no description)

File Size: 120 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: Wed Nov 11 20:33:01 2020 Cross-referenced by PHPXref 0.7.1