X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=13643b948adde2bbeff0baf2ae2689c3b6a180c1;hb=c57990d53c4453deeb96d297dc23f7060f2b7b30;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..13643b9 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' => 'index', + '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' => 'index', + 'action' => 'index', + ), ), ), ), ), - 'controllers' => array( - 'IndexController' => 'Application\Controller\IndexController' + 'controller' => array( + 'classes' => array( + 'index' => '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', @@ -41,11 +46,7 @@ return array( 'error/index' => __DIR__ . '/../view/error/index.phtml', ), 'template_path_stack' => array( - 'application' => __DIR__ . '/../view', + __DIR__ . '/../view', ), ), - 'db' => array( - 'driver' => 'Pdo-Sqlite', - 'dbname' => 'path/to/data/database.sqlite' - ) -); \ No newline at end of file +);