X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=6a300aa471fe6401d5ae9de39005ad454076f89f;hb=7889d92c1550c6122119815ad673d186fee4f415;hp=2ae21f013c0239094e7a75e5137132f754d94e02;hpb=5245b8954b9d1bf04d370bf3a2d715a40d8f7825;p=zf2.biz%2Fapplication_blanche.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 2ae21f0..6a300aa 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -1,20 +1,13 @@ array( - 'definition' => array( - 'class' => array( - 'Zend\Mvc\Router\RouteStack' => array( - 'instantiator' => array( - 'Zend\Mvc\Router\Http\TreeRouteStack', - 'factory' - ), - ), - ), - ), 'instance' => array( - // Inject the plugin broker for controller plugins into + + // Setup for controllers. + + // Injecting the plugin broker for controller plugins into // the action controller for use by all controllers that - // extend it. + // extend it 'Zend\Mvc\Controller\ActionController' => array( 'parameters' => array( 'broker' => 'Zend\Mvc\Controller\PluginBroker', @@ -26,43 +19,8 @@ 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( - 'application' => __DIR__ . '/../view', - ), - ), - ), - 'Zend\View\Renderer\PhpRenderer' => array( - 'parameters' => array( - 'resolver' => 'Zend\View\Resolver\AggregateResolver', - ), - ), - 'Zend\Mvc\View\DefaultRenderingStrategy' => array( - 'parameters' => array( - 'baseTemplate' => 'layout/layout', - ), - ), - 'Zend\Mvc\View\ExceptionStrategy' => array( - 'parameters' => array( - 'displayExceptions' => true, - 'template' => 'error/index', - ), - ), - 'Zend\Mvc\View\RouteNotFoundStrategy' => array( - 'parameters' => array( - 'notFoundTemplate' => 'error/404', - ), - ), - - // Setup the router and routes - 'Zend\Mvc\Router\RouteStack' => array( + // Setup for router and routes + 'Zend\Mvc\Router\RouteStackInterface' => array( 'parameters' => array( 'routes' => array( 'default' => array( @@ -92,6 +50,75 @@ return array( ), ), ), + + // Setup for the view layer. + + // Using the PhpRenderer, which just handles html produced by php + // scripts + 'Zend\View\Renderer\PhpRenderer' => array( + 'parameters' => array( + 'resolver' => 'Zend\View\Resolver\AggregateResolver', + ), + ), + // Defining how the view scripts should be resolved by stacking up + // a Zend\View\Resolver\TemplateMapResolver and a + // Zend\View\Resolver\TemplatePathStack + 'Zend\View\Resolver\AggregateResolver' => array( + 'injections' => array( + 'Zend\View\Resolver\TemplateMapResolver', + 'Zend\View\Resolver\TemplatePathStack', + ), + ), + // Defining where the layout/layout view should be located + 'Zend\View\Resolver\TemplateMapResolver' => array( + 'parameters' => array( + 'map' => array( + 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml', + ), + ), + ), + // Defining where to look for views. This works with multiple paths, + // very similar to include_path + 'Zend\View\Resolver\TemplatePathStack' => array( + 'parameters' => array( + 'paths' => array( + 'application' => __DIR__ . '/../view', + ), + ), + ), + // View for the layout + 'Zend\Mvc\View\DefaultRenderingStrategy' => array( + 'parameters' => array( + 'layoutTemplate' => 'layout/layout', + ), + ), + // Injecting the router into the url helper + 'Zend\View\Helper\Url' => array( + 'parameters' => array( + 'router' => 'Zend\Mvc\Router\RouteStackInterface', + ), + ), + // Configuration for the doctype helper + 'Zend\View\Helper\Doctype' => array( + 'parameters' => array( + 'doctype' => 'HTML5', + ), + ), + // View script rendered in case of 404 exception + 'Zend\Mvc\View\RouteNotFoundStrategy' => array( + 'parameters' => array( + 'displayNotFoundReason' => true, + 'displayExceptions' => true, + 'notFoundTemplate' => 'error/404', + ), + ), + // View script rendered in case of other exceptions + 'Zend\Mvc\View\ExceptionStrategy' => array( + 'parameters' => array( + 'displayExceptions' => true, + 'exceptionTemplate' => 'error/index', + ), + ), ), ), );