EventManagerAwareTrait
A trait for objects that provide events.
If you use this trait in an object, you will probably want to also implement EventManagerAwareInterface, which will make it so the default initializer in a ZF2 MVC application will automatically inject an instance of the EventManager into your object when it is pulled from the ServiceManager.
Tags
Table of Contents
- $events : EventManagerInterface
- getEventManager() : EventManagerInterface
- Retrieve the event manager
- setEventManager() : mixed
- Set the event manager instance used by this context.
Properties
$events
protected
EventManagerInterface
$events
Methods
getEventManager()
Retrieve the event manager
public
getEventManager() : EventManagerInterface
Lazy-loads an EventManager instance if none registered.
Return values
EventManagerInterface —setEventManager()
Set the event manager instance used by this context.
public
setEventManager(EventManagerInterface $events) : mixed
For convenience, this method will also set the class name / LSB name as identifiers, in addition to any string or array of strings set to the $this->eventIdentifier property.
Parameters
- $events : EventManagerInterface