X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=b68e94990df94af415c457b9db2586cde11259d5;hb=de8147bdf03136248afc2bc6fd04babc5529f047;hp=275f8b3aec1f819807878873beec5d02350db424;hpb=fe41037cd7eec32a9f2b8bb0a84b80bc7f6def65;p=zf2.biz%2Fgalerie.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 275f8b3..b68e949 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -1,39 +1,44 @@ 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' => 'IndexController', - 'action' => 'index', + 'router' => 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' => 'IndexController', + 'action' => 'index', + ), ), ), - ), - 'home' => array( - 'type' => 'Zend\Mvc\Router\Http\Literal', - 'options' => array( - 'route' => '/', - 'defaults' => array( - 'controller' => 'IndexController', - 'action' => 'index', + 'home' => array( + 'type' => 'Zend\Mvc\Router\Http\Literal', + 'options' => array( + 'route' => '/', + 'defaults' => array( + 'controller' => 'IndexController', + 'action' => 'index', + ), ), ), ), ), - 'controllers' => array( - 'IndexController' => 'Application\Controller\IndexController' + 'controller' => array( + 'classes' => array( + 'IndexController' => 'Application\Controller\IndexController' + ), ), - 'view' => array( + 'view_manager' => array( 'display_not_found_reason' => true, - 'display_exceptions' => true, - 'not_found_template' => 'error/404', - 'exception_template' => 'error/index', + 'display_exceptions' => true, + 'doctype' => 'HTML5', + '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', @@ -44,8 +49,4 @@ return array( 'application' => __DIR__ . '/../view', ), ), - 'db' => array( - 'driver' => 'Pdo-Sqlite', - 'dbname' => 'path/to/data/database.sqlite' - ) -); \ No newline at end of file +);