X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=13643b948adde2bbeff0baf2ae2689c3b6a180c1;hb=c57990d53c4453deeb96d297dc23f7060f2b7b30;hp=dc3bd818ef923216e4071d56e06c8e75954e6ec9;hpb=52f94fcc7087bb4b4134a0400ddedeba8c75175f;p=zf2.biz%2Fgalerie.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index dc3bd81..13643b9 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -11,7 +11,7 @@ return array( 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', ), 'defaults' => array( - 'controller' => 'IndexController', + 'controller' => 'index', 'action' => 'index', ), ), @@ -21,19 +21,22 @@ return array( 'options' => array( 'route' => '/', 'defaults' => array( - 'controller' => 'IndexController', + 'controller' => 'index', 'action' => 'index', ), ), ), ), ), - 'controllers' => array( - 'IndexController' => 'Application\Controller\IndexController' + 'controller' => array( + 'classes' => array( + 'index' => 'Application\Controller\IndexController' + ), ), 'view_manager' => array( 'display_not_found_reason' => true, 'display_exceptions' => true, + 'doctype' => 'HTML5', 'not_found_template' => 'error/404', 'exception_template' => 'error/index', 'template_map' => array( @@ -43,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' - ) );