Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // your configuration file, e.g., config/autoload/global.php
- return array(
- 'navigation' => array(
- 'default' => array(
- 'campaigns' => array(
- 'label' => 'Campaigns',
- 'controller' => 'campaigns',
- 'action' => 'index',
- 'route' => 'campaigns',
- ),
- 'responses' => array(
- 'label' => 'Responses',
- 'controller' => 'responses',
- 'action' => 'index',
- 'route' => 'responses',
- ),
- ),
- 'admin' => array(
- 'clients' => array(
- 'label' => 'Clients',
- 'controller' => 'clients',
- 'action' => 'index',
- 'route' => 'clients',
- ),
- 'campaigns' => array(
- 'label' => 'Campaigns',
- 'controller' => 'campaigns',
- 'action' => 'index',
- 'route' => 'campaigns',
- ),
- 'responses' => array(
- 'label' => 'Responses',
- 'controller' => 'responses',
- 'action' => 'index',
- 'route' => 'responses',
- ),
- ),
- 'secondary' => array(
- 'add_user' => array(
- 'label' => 'Add User',
- 'controller' => 'admin',
- 'action' => 'add-user',
- 'route' => 'admin/add-user',
- ),
- 'view-user' => array(
- 'label' => 'View Users',
- 'controller' => 'admin',
- 'action' => 'users',
- 'route' => 'admin/users',
- ),
- ),
- ),
- 'service_manager' => array(
- 'factories' => array(
- 'navigation' => 'Zend\Navigation\Service\DefaultNavigationFactory',
- 'secondary_navigation' => 'Fcm\Navigation\Service\SecondaryNavigationFactory',
- 'admin' => 'Fcm\Navigation\Service\AdminNavigationFactory'
- ),
- ),
- 'module_layouts' => array(
- 'Fcm' => array(
- 'default' => 'layout/fcm',
- ),
- 'ZfcUser' => array(
- 'default' => 'layout/fcm',
- ),
- 'Campaign' => array(
- 'default' => 'layout/campaign',
- ),
- ),
- );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement