Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace ChecklistCore;
- return array(
- 'controllers' => array(
- 'invokables' => array(
- 'ChecklistCore\Controller\Overview' => 'ChecklistCore\Controller\OverviewController',
- ),
- ),
- 'router' => array(
- 'routes' => array(
- 'checklistCore' => array(
- 'type' => 'segment',
- 'options' => array(
- 'route' => '/checklistCore[/][:action][/:id]',
- 'constraints' => array(
- 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
- 'id' => '[0-9]+',
- ),
- 'defaults' => array(
- 'controller' => 'ChecklistCore\Controller\Overview',
- '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',
- 'checklistCore/index/index' => __DIR__ . '/../view/checklistCore/index/index.phtml',
- 'error/404' => __DIR__ . '/../view/error/404.phtml',
- 'error/index' => __DIR__ . '/../view/error/index.phtml',
- ),
- 'template_path_stack' => array(
- 'checklistCore' => __DIR__ . '/../view',
- ),
- ),
- 'translator' => array(
- 'locale' => 'en_EN',
- 'translation_file_patterns' => array(
- array(
- 'type' => 'phpArray',
- 'base_dir' => __DIR__ . '/../language',
- 'pattern' => '%s.php',
- 'text_domain' => 'checklist',
- ),
- ),
- ),
Advertisement
Add Comment
Please, Sign In to add comment