Highway to PSR2
[openemr.git] / interface / modules / zend_modules / module / Ccr / config / module.config.php
blob45ccdf513db44be66c170fb4f80080549413f551
1 <?php
2 return array(
3 'controllers' => array(
4 'invokables' => array(
5 'Ccr' => 'Ccr\Controller\CcrController',
6 ),
7 ),
9 'router' => array(
10 'routes' => array(
11 'ccr' => array(
12 'type' => 'segment',
13 'options' => array(
14 'route' => '/ccr[/:action][/:id]',
15 'constraints' => array(
16 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
17 'id' => '[0-9]+',
19 'defaults' => array(
20 'controller' => 'Ccr',
21 'action' => 'index',
28 'view_manager' => array(
29 'template_path_stack' => array(
30 'ccr' => __DIR__ . '/../view/',
32 'template_map' => array(
33 'ccr/layout/layout' => __DIR__ . '/../view/layout/layout.phtml',
35 'strategies' => array(
36 'ViewJsonStrategy',
37 'ViewFeedStrategy',