Class ViewManager

Summary

Fully Qualified Name: Zend\Mvc\Console\View\ViewManager
Implements: ListenerAggregateInterface

Description

Prepares the view layer for console applications

Methods

Name Description Defined By
attach() Attach bootstrap event. ViewManager
getView() Retrieves the View instance ViewManager
onBootstrap() Prepares the view layer ViewManager

Method Details

attach()

Attach bootstrap event.

{@inheritDoc}

Parameter Name Type Description
$events
$priority

Returns:

getView()

Retrieves the View instance

Returns: \View

onBootstrap()

Prepares the view layer

Overriding, as several operations are omitted in the console view algorithms, as well as to ensure we pick up the Console variants of several listeners and strategies.

Parameter Name Type Description
$event \MvcEvent

Returns: void

Top