X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=275f8b3aec1f819807878873beec5d02350db424;hb=fe41037cd7eec32a9f2b8bb0a84b80bc7f6def65;hp=4d5eef99e00047387e9ef7d7ea7113b04d7648ba;hpb=c5554b6b41da12c4e98cbffae3ee430a59bc36be;p=zf2.biz%2Fgalerie.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 4d5eef9..275f8b3 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -1,26 +1,5 @@ 'layout/layout.phtml', - 'display_exceptions' => true, - 'di' => array( - 'instance' => array( - 'alias' => array( - 'index' => 'Application\Controller\IndexController', - 'error' => 'Application\Controller\ErrorController', - 'view' => 'Zend\View\PhpRenderer', - ), - 'Zend\View\PhpRenderer' => array( - 'parameters' => array( - 'resolver' => 'Zend\View\TemplatePathStack', - 'options' => array( - 'script_paths' => array( - 'application' => __DIR__ . '/../view', - ), - ), - ), - ), - ), - ), 'routes' => array( 'default' => array( 'type' => 'Zend\Mvc\Router\Http\Segment', @@ -31,7 +10,7 @@ return array( 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', ), 'defaults' => array( - 'controller' => 'index', + 'controller' => 'IndexController', 'action' => 'index', ), ), @@ -41,10 +20,32 @@ return array( 'options' => array( 'route' => '/', 'defaults' => array( - 'controller' => 'index', + 'controller' => 'IndexController', 'action' => 'index', ), ), ), ), -); + 'controllers' => array( + 'IndexController' => 'Application\Controller\IndexController' + ), + 'view' => array( + 'display_not_found_reason' => true, + 'display_exceptions' => true, + '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', + ), + 'template_path_stack' => array( + 'application' => __DIR__ . '/../view', + ), + ), + 'db' => array( + 'driver' => 'Pdo-Sqlite', + 'dbname' => 'path/to/data/database.sqlite' + ) +); \ No newline at end of file