X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=8b7ba543a460edddca2052d028ff61c6405c9cfd;hb=297554e10f74e2a723e066528605ca84e5deb4b8;hp=e6f4afa4db60f58f7d69a22efd041e97c238f2eb;hpb=8511c4ef382e917cadc559b30214610500bf3cae;p=zf2.biz%2Fapplication_blanche.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index e6f4afa..8b7ba54 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -1,25 +1,7 @@ array( - 'definition' => array( - 'class' => array( - 'Zend\View\Renderer\PhpRenderer' => array( - 'setResolver' => array( - 'resolver' => array( - 'required' => false, - 'type' => 'Zend\View\Resolver', - ), - ), - ), - ), - ), 'instance' => array( - 'alias' => array( - 'index' => 'Application\Controller\IndexController', - 'error' => 'Application\Controller\ErrorController', - 'view' => 'Zend\View\Renderer\PhpRenderer', - ), - // Inject the plugin broker for controller plugins into // the action controller for use by all controllers that // extend it. @@ -35,6 +17,11 @@ return array( ), // Setup the View layer + 'Zend\View\Resolver\AggregateResolver' => array( + 'injections' => array( + 'Zend\View\Resolver\TemplatePathStack', + ), + ), 'Zend\View\Resolver\TemplatePathStack' => array( 'parameters' => array( 'paths' => array( @@ -44,23 +31,23 @@ return array( ), 'Zend\View\Renderer\PhpRenderer' => array( 'parameters' => array( - 'resolver' => 'Zend\View\Resolver\TemplatePathStack', + 'resolver' => 'Zend\View\Resolver\AggregateResolver', ), ), 'Zend\Mvc\View\DefaultRenderingStrategy' => array( 'parameters' => array( - 'baseTemplate' => 'layout/layout.phtml', + 'baseTemplate' => 'layout/layout', ), ), 'Zend\Mvc\View\ExceptionStrategy' => array( 'parameters' => array( 'displayExceptions' => true, - 'errorTemplate' => 'error/index.phtml', + 'template' => 'error/index', ), ), 'Zend\Mvc\View\RouteNotFoundStrategy' => array( 'parameters' => array( - 'notFoundTemplate' => 'error/404.phtml', + 'notFoundTemplate' => 'error/404', ), ), @@ -77,7 +64,7 @@ return array( 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', ), 'defaults' => array( - 'controller' => 'index', + 'controller' => 'Application\Controller\IndexController', 'action' => 'index', ), ), @@ -87,7 +74,7 @@ return array( 'options' => array( 'route' => '/', 'defaults' => array( - 'controller' => 'index', + 'controller' => 'Application\Controller\IndexController', 'action' => 'index', ), ),