Interface EventManagerAwareTrait

Summary

Fully Qualified Name: Zend\EventManager\EventManagerAwareTrait

Description

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.

Methods

Name Description Defined By
getEventManager() Retrieve the event manager EventManagerAwareTrait
setEventManager() Set the event manager instance used by this context. EventManagerAwareTrait

Method Details

getEventManager()

Retrieve the event manager

Lazy-loads an EventManager instance if none registered.

Returns: \EventManagerInterface

setEventManager()

Set the event manager instance used by this context.

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.

Parameter Name Type Description
$events \EventManagerInterface

Returns:

Top