X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=cab10d75d8cd96db6189f14691e75343e23a56d6;hb=0a995deccf91a47ffd321984b6b2b70f03e8cd28;hp=6561e263c03407d79cd1f20e565d439cd7b5c726;hpb=fc842fa8399e83f667574c19eecb701de22dca3a;p=zf2.biz%2Fgalerie.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 6561e26..cab10d7 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -9,7 +9,7 @@ return array( '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. @@ -35,30 +35,34 @@ return 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' => 'index', - 'action' => 'index', - ), - ), - ), - 'home' => array( - 'type' => 'Zend\Mvc\Router\Http\Literal', - 'options' => array( - 'route' => '/', - 'defaults' => array( - 'controller' => 'index', - 'action' => 'index', + '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' => 'index', + 'action' => 'index', + ), + ), + ), + 'home' => array( + 'type' => 'Zend\Mvc\Router\Http\Literal', + 'options' => array( + 'route' => '/', + 'defaults' => array( + 'controller' => 'index', + 'action' => 'index', + ), + ), + ), + ), ), ), ),