Guest User

Untitled

a guest
Jan 12th, 2019
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. 'router' => array(
  2. 'routes' => array(
  3. 'zfcadmin' => array(
  4. 'type' => 'literal',
  5. 'options' => array(
  6. 'route' => '/admin',
  7. 'defaults' => array(
  8. 'controller' => 'ZfcAdmin\Controller\AdminController',
  9. 'action' => 'index',
  10. ),
  11. ),
  12. 'may_terminate' => true,
  13. 'child_routes' => array(
  14. 'albums' => array(
  15. 'type' => 'literal',
  16. 'options' => array(
  17. 'route' => '/albums',
  18. 'defaults' => array(
  19. 'controller' => 'Album\Controller\Album',
  20. 'action' => 'index',
  21. ),
  22.  
  23. ),
  24. 'child_routes' => array(
  25. 'test' => array(
  26. 'type' => 'literal',
  27. 'options' => array(
  28. 'route' => '/test',
  29. 'defaults' => array(
  30. 'controller' => 'Album\Controller\Album',
  31. 'action' => 'index',
  32. ),
  33. ),
  34. 'may_terminate' => true,
  35. ),
  36. ),
  37. ),
  38. ),
  39. ),
  40. ),
  41. ),
Add Comment
Please, Sign In to add comment