Abstract aggregate listener

 Methods

Attach one or more listeners

attach(\Zend\EventManager\EventManagerInterface $events) : void

Implementors may add an optional $priority argument; the EventManager implementation will pass this to the aggregate.

Parameters

Detach all previously attached listeners

detach(\Zend\EventManager\EventManagerInterface $events) : void
Inherited

inherited_from \Zend\EventManager\AbstractListenerAggregate::detach()

Parameters

Should we display exceptions in error pages?

displayExceptions() : bool

Returns

bool

Get current template for message that will be shown in Console.

getMessage() : string

Returns

string

getPreviousMessage()

getPreviousMessage() : \Zend\Mvc\View\Console\callable | string

Returns

\Zend\Mvc\View\Console\callablestring

Create an exception view model, and set the HTTP status code

prepareExceptionViewModel(\Zend\Mvc\MvcEvent $e) : void

todo dispatch.error does not halt dispatch unless a response is returned. As such, we likely need to trigger rendering as a low priority dispatch.error event (or goto a render event) to ensure rendering occurs, and that munging of view models occurs when expected.

Parameters

Flag: display exceptions in error pages?

setDisplayExceptions(bool $displayExceptions) : \Zend\Mvc\View\Console\ExceptionStrategy

Parameters

$displayExceptions

bool

Returns

Set template for message that will be shown in Console.

setMessage(string | \Zend\Mvc\View\Console\callable $message) : \Zend\Mvc\View\Console\ExceptionStrategy

The message can be a string (template) or a callable (i.e. a closure).

The closure is expected to return a string and will be called with 2 parameters: Exception $exception - the exception being thrown boolean $displayExceptions - whether to display exceptions or not

If the message is a string, one can use the following template params:

:className - full class name of exception instance :message - exception message :code - exception code :file - the file where the exception has been thrown :line - the line where the exception has been thrown :stack - full exception stack

Parameters

$message

string\Zend\Mvc\View\Console\callable

Returns

Sets template for previous message that will be shown in Console.

setPreviousMessage(string $previousMessage) : \Zend\Mvc\View\Console\ExceptionStrategy

Parameters

$previousMessage

string

Returns

 Properties

 

Display exceptions?

$displayExceptions : bool

 

$listeners

$listeners : \Zend\Stdlib\CallbackHandler[]
Inherited

inherited_from \Zend\EventManager\AbstractListenerAggregate::$$listeners
 

A template for message to show in console when an exception has occurred.

$message : string | \Zend\Mvc\View\Console\callable

 

A template for message to show in console when an exception has previous exceptions.

$previousMessage : string