Encapsulates the target context and parameters passed, and provides some
behavior for interacting with the event manager.
Methods
Constructor
__construct(string $name, string | object $target, array | \ArrayAccess $params)
Inherited
Accept a target and its parameters.
inherited_from |
\Zend\EventManager\Event::__construct() |
Parameters
$target
stringobject
$params
array\ArrayAccess
Get the currently registered controller name
getController() : string
Get controller class
getControllerClass() : string
Retrieve the error message, if any
getError() : string
Get event name
getName() : string
Inherited
inherited_from |
\Zend\EventManager\Event::getName() |
Returns
string
Get an individual parameter
getParam(string | int $name, mixed $default) : mixed
Inherited
If the parameter does not exist, the $default value will be returned.
inherited_from |
\Zend\EventManager\Event::getParam() |
Parameters
$name
stringint
$default
mixed
Returns
mixed
Get all parameters
getParams() : array | object | \ArrayAccess
Inherited
inherited_from |
\Zend\EventManager\Event::getParams() |
Returns
array
object
\ArrayAccess
Get result
getResult() : mixed
Get the event target
getTarget() : string | object
Inherited
This may be either an object, or the name of a static method.
inherited_from |
\Zend\EventManager\Event::getTarget() |
Returns
string
object
Does the event represent an error response?
isError() : bool
Is propagation stopped?
propagationIsStopped() : bool
Inherited
inherited_from |
\Zend\EventManager\Event::propagationIsStopped() |
Returns
bool
Set application instance
setApplication(\Zend\Mvc\ApplicationInterface $application) : \Zend\Mvc\MvcEvent
Set controller name
setController(string $name) : \Zend\Mvc\MvcEvent
Parameters
$name
string
Returns
Set controller class
setControllerClass(string $class) : \Zend\Mvc\MvcEvent
Parameters
$class
string
Returns
Set the error message (indicating error in handling request)
setError(string $message) : \Zend\Mvc\MvcEvent
Parameters
$message
string
Returns
Set the event name
setName(string $name) : \Zend\EventManager\Event
Inherited
inherited_from |
\Zend\EventManager\Event::setName() |
Parameters
$name
string
Returns
Set an individual parameter to a value
setParam(string | int $name, mixed $value) : \Zend\EventManager\Event
Inherited
inherited_from |
\Zend\EventManager\Event::setParam() |
Parameters
$name
stringint
$value
mixed
Returns
Set parameters
setParams(array | \ArrayAccess | object $params) : \Zend\EventManager\Event
Inherited
Overwrites parameters
inherited_from |
\Zend\EventManager\Event::setParams() |
Parameters
$params
array\ArrayAccessobject
Exceptions
Returns
Set the event target/context
setTarget(null | string | object $target) : \Zend\EventManager\Event
Inherited
inherited_from |
\Zend\EventManager\Event::setTarget() |
Parameters
$target
nullstringobject
Returns
Set the view model
setViewModel(\Zend\View\Model\ModelInterface $viewModel) : \Zend\Mvc\MvcEvent
Stop further event propagation
stopPropagation(bool $flag) : void
Inherited
inherited_from |
\Zend\EventManager\Event::stopPropagation() |
Parameters
$flag
bool
Properties
$application
$application
<p>Event name</p>
$name : string
Inherited
inherited_from |
\Zend\EventManager\Event::$$name |
<p>The event parameters</p>
$params : array | \ArrayAccess | object
Inherited
inherited_from |
\Zend\EventManager\Event::$$params |
<p>Whether or not to stop propagation</p>
$stopPropagation : bool
Inherited
inherited_from |
\Zend\EventManager\Event::$$stopPropagation |
<p>The event target</p>
$target : string | object
Inherited
inherited_from |
\Zend\EventManager\Event::$$target |
Constants
EVENT_BOOTSTRAP
EVENT_BOOTSTRAP
EVENT_DISPATCH
EVENT_DISPATCH
EVENT_DISPATCH_ERROR
EVENT_DISPATCH_ERROR
EVENT_FINISH
EVENT_FINISH
EVENT_RENDER
EVENT_RENDER
EVENT_RENDER_ERROR
EVENT_RENDER_ERROR