X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=a4136d5536a11e7d7643fdd0d737d5335571b847;hb=a9e4be85419d45c13a96d9939d5df4c30dfa8cd5;hp=8015ff53b72451e0d04f6663a845748a82e8e581;hpb=a0219327cf0d91dfe4de41d5ffca01e9023e189c;p=zf2.biz%2Fapplication_blanche.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 8015ff5..a4136d5 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -2,27 +2,43 @@ return array( 'router' => array( 'routes' => array( - 'default' => array( - 'type' => 'Zend\Mvc\Router\Http\Segment', + 'home' => array( + 'type' => 'Zend\Mvc\Router\Http\Literal', 'options' => array( - 'route' => '/[:controller[/:action]]', - 'constraints' => array( - 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*', - 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', - ), + 'route' => '/', 'defaults' => array( - 'controller' => 'index', + 'controller' => 'Application\Controller\IndexController', 'action' => 'index', ), ), ), - 'home' => array( - 'type' => 'Zend\Mvc\Router\Http\Literal', + // The following is a route to simplify getting started creating + // new controllers and actions without needing to create a new + // module. Simply drop new controllers in, and you can access them + // using the path /application/:controller/:action + 'application' => array( + 'type' => 'Literal', 'options' => array( - 'route' => '/', + 'route' => '/application', 'defaults' => array( - 'controller' => 'index', - 'action' => 'index', + '__NAMESPACE__' => 'Application\Controller', + 'controller' => 'IndexController', + 'action' => 'index', + ), + ), + 'may_terminate' => true, + 'child_routes' => array( + 'default' => array( + 'type' => '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( + ), + ), ), ), ), @@ -30,7 +46,7 @@ return array( ), 'controller' => array( 'classes' => array( - 'index' => 'Application\Controller\IndexController' + 'Application\Controller\IndexController' => 'Application\Controller\IndexController' ), ), 'view_manager' => array( @@ -40,13 +56,13 @@ return array( 'not_found_template' => 'error/404', 'exception_template' => 'error/index', 'template_map' => array( - 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml', - 'index/index' => __DIR__ . '/../view/index/index.phtml', - 'error/404' => __DIR__ . '/../view/error/404.phtml', - 'error/index' => __DIR__ . '/../view/error/index.phtml', + 'layout/layout' => __DIR__ . '/../view/layout/layout.phtml', + 'application/index/index' => __DIR__ . '/../view/application/index/index.phtml', + 'error/404' => __DIR__ . '/../view/error/404.phtml', + 'error/index' => __DIR__ . '/../view/error/index.phtml', ), 'template_path_stack' => array( - 'application' => __DIR__ . '/../view', + __DIR__ . '/../view', ), ), );