Highway to PSR2
[openemr.git] / interface / modules / zend_modules / module / Carecoordination / config / module.config.php
blobb30a1095d276b21527cf9f3d07906a231aa88485
1 <?php
2 return array(
3 'controllers' => array(
4 'invokables' => array(
5 'Carecoordination' => 'Carecoordination\Controller\CarecoordinationController',
6 'Encounterccdadispatch' => 'Carecoordination\Controller\EncounterccdadispatchController',
7 'encountermanager' => 'Carecoordination\Controller\EncountermanagerController',
8 'Carecoordination\Setup' => 'Carecoordination\Controller\SetupController',
9 'Ccd' => 'Carecoordination\Controller\CcdController',
13 'router' => array(
14 'routes' => array(
15 'carecoordination' => array(
16 'type' => 'segment',
17 'options' => array(
18 'route' => '/carecoordination[/:action][/:id]',
19 'constraints' => array(
20 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
21 'id' => '[0-9]+',
23 'defaults' => array(
24 'controller' => 'Carecoordination',
25 'action' => 'index',
30 'encounterccdadispatch' => array(
31 'type' => 'segment',
32 'options' => array(
33 'route' => '/encounterccdadispatch[/:action][/:id][/:val][/:id][/:val]',
34 'constraints' => array(
35 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
36 'id' => '[a-zA-Z_]*',
37 'val' => '[0-9]*',
39 'defaults' => array(
40 'controller' => 'Encounterccdadispatch',
41 'action' => 'index',
46 'encountermanager' => array(
47 'type' => 'segment',
48 'options' => array(
49 'route' => '/encountermanager[/:action]',
50 'constraints' => array(
51 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
53 'defaults' => array(
54 'controller' => 'encountermanager',
55 'action' => 'index',
59 'setup' => array(
60 'type' => 'segment',
61 'options' => array(
62 'route' => '/carecoordination/setup[/:action][/:id]',
63 'constraints' => array(
64 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
65 'id' => '[0-9]+',
67 'defaults' => array(
68 'controller' => 'Carecoordination\Setup',
69 'action' => 'index',
74 'ccd' => array(
75 'type' => 'segment',
76 'options' => array(
77 'route' => '/ccd[/:action][/:id]',
78 'constraints' => array(
79 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
80 'id' => '[0-9]+',
82 'defaults' => array(
83 'controller' => 'Ccd',
84 'action' => 'upload',
91 'view_manager' => array(
92 'template_path_stack' => array(
93 'carecoordination' => __DIR__ . '/../view/',
95 'template_map' => array(
96 'carecoordination/layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
97 'carecoordination/layout/mapper' => __DIR__ . '/../view/layout/mapper.phtml',
98 'carecoordination/layout/encountermanager' => __DIR__ . '/../view/layout/encountermanager.phtml',
99 'carecoordination/layout/setup' => __DIR__ . '/../view/layout/setup.phtml',
101 'strategies' => array(
102 'ViewJsonStrategy',
103 'ViewFeedStrategy',