X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=8b7ba543a460edddca2052d028ff61c6405c9cfd;hb=297554e10f74e2a723e066528605ca84e5deb4b8;hp=9c6302a594513868041ad0864d5552362032960c;hpb=eeb378172fcd703006d14ee9b5b01fa939de66a1;p=zf2.biz%2Fapplication_blanche.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 9c6302a..8b7ba54 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -1,48 +1,85 @@ 'layouts/layout.phtml', - 'display_exceptions' => false, - 'di' => array( + 'di' => array( 'instance' => array( - 'alias' => array( - 'index' => 'Application\Controller\IndexController', - 'error' => 'Application\Controller\ErrorController', - 'view' => 'Zend\View\PhpRenderer', + // Inject the plugin broker for controller plugins into + // the action controller for use by all controllers that + // extend it. + 'Zend\Mvc\Controller\ActionController' => array( + 'parameters' => array( + 'broker' => 'Zend\Mvc\Controller\PluginBroker', + ), ), - 'Zend\View\PhpRenderer' => array( + 'Zend\Mvc\Controller\PluginBroker' => array( 'parameters' => array( - 'resolver' => 'Zend\View\TemplatePathStack', - 'options' => array( - 'script_paths' => array( - 'application' => __DIR__ . '/../views', - ), + 'loader' => 'Zend\Mvc\Controller\PluginLoader', + ), + ), + + // Setup the View layer + 'Zend\View\Resolver\AggregateResolver' => array( + 'injections' => array( + 'Zend\View\Resolver\TemplatePathStack', + ), + ), + 'Zend\View\Resolver\TemplatePathStack' => array( + 'parameters' => array( + 'paths' => array( + 'application' => __DIR__ . '/../view', ), ), ), - ), - ), - 'routes' => array( - 'default' => array( - 'type' => 'Zend\Mvc\Router\Http\Segment', - 'options' => array( - 'route' => '/[:controller[/:action]]', - 'constraints' => array( - 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*', - 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', + 'Zend\View\Renderer\PhpRenderer' => array( + 'parameters' => array( + 'resolver' => 'Zend\View\Resolver\AggregateResolver', + ), + ), + 'Zend\Mvc\View\DefaultRenderingStrategy' => array( + 'parameters' => array( + 'baseTemplate' => 'layout/layout', ), - 'defaults' => array( - 'controller' => 'index', - 'action' => 'index', + ), + 'Zend\Mvc\View\ExceptionStrategy' => array( + 'parameters' => array( + 'displayExceptions' => true, + 'template' => 'error/index', ), ), - ), - 'home' => array( - 'type' => 'Zend\Mvc\Router\Http\Literal', - 'options' => array( - 'route' => '/', - 'defaults' => array( - 'controller' => 'index', - 'action' => 'index', + 'Zend\Mvc\View\RouteNotFoundStrategy' => array( + 'parameters' => array( + 'notFoundTemplate' => 'error/404', + ), + ), + + // Setup the router and routes + 'Zend\Mvc\Router\RouteStack' => array( + 'parameters' => array( + 'routes' => array( + 'default' => array( + 'type' => 'Zend\Mvc\Router\Http\Segment', + 'options' => array( + 'route' => '/[:controller[/:action]]', + 'constraints' => array( + 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*', + 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', + ), + 'defaults' => array( + 'controller' => 'Application\Controller\IndexController', + 'action' => 'index', + ), + ), + ), + 'home' => array( + 'type' => 'Zend\Mvc\Router\Http\Literal', + 'options' => array( + 'route' => '/', + 'defaults' => array( + 'controller' => 'Application\Controller\IndexController', + 'action' => 'index', + ), + ), + ), + ), ), ), ),