X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=module%2FApplication%2Fconfig%2Fmodule.config.php;h=b68e94990df94af415c457b9db2586cde11259d5;hb=de8147bdf03136248afc2bc6fd04babc5529f047;hp=6561e263c03407d79cd1f20e565d439cd7b5c726;hpb=628a15da148c720ea548b5e4a01135a22d6b56aa;p=zf2.biz%2Fgalerie.git diff --git a/module/Application/config/module.config.php b/module/Application/config/module.config.php index 6561e26..b68e949 100644 --- a/module/Application/config/module.config.php +++ b/module/Application/config/module.config.php @@ -1,66 +1,52 @@ 'layout/layout.phtml', - 'display_exceptions' => true, - 'di' => array( - 'instance' => array( - 'alias' => array( - 'index' => 'Application\Controller\IndexController', - 'error' => 'Application\Controller\ErrorController', - 'view' => 'Zend\View\PhpRenderer', - ), - - // Inject the plugin broker for controller plugins into - // the action controller for use by all controllers that - // extend it. - 'Zend\Mvc\Controller\ActionController' => array( - 'parameters' => array( - 'broker' => 'Zend\Mvc\Controller\PluginBroker', - ), - ), - 'Zend\Mvc\Controller\PluginBroker' => array( - 'parameters' => array( - 'loader' => 'Zend\Mvc\Controller\PluginLoader', + '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', + ), ), ), - - // Setup the PhpRenderer - 'Zend\View\PhpRenderer' => array( - 'parameters' => array( - 'resolver' => 'Zend\View\TemplatePathStack', - 'options' => array( - 'script_paths' => array( - 'application' => __DIR__ . '/../view', - ), + 'home' => array( + 'type' => 'Zend\Mvc\Router\Http\Literal', + 'options' => array( + 'route' => '/', + 'defaults' => array( + 'controller' => 'IndexController', + 'action' => 'index', ), ), ), ), ), - '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', - ), - ), + 'controller' => array( + 'classes' => array( + 'IndexController' => 'Application\Controller\IndexController' ), - 'home' => array( - 'type' => 'Zend\Mvc\Router\Http\Literal', - 'options' => array( - 'route' => '/', - 'defaults' => array( - 'controller' => 'index', - 'action' => 'index', - ), - ), + ), + '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( + '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', ), ), );