Advertisement
Vinkonst

Untitled

Sep 16th, 2014
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.08 KB | None | 0 0
  1. 'application' => array(
  2. 'type' => 'Literal',
  3. 'options' => array(
  4. 'route' => '/application',
  5. 'defaults' => array(
  6. '__NAMESPACE__' => 'Application\Controller',
  7. 'controller' => 'Index',
  8. 'action' => 'index',
  9. ),
  10. ),
  11. 'may_terminate' => true,
  12. 'child_routes' => array(
  13. 'default' => array(
  14. 'type' => 'Segment',
  15. 'options' => array(
  16. 'route' => '/[:controller[/:action]]',
  17. 'constraints' => array(
  18. 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*',
  19. 'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
  20. ),
  21. 'defaults' => array(
  22. ),
  23. ),
  24. ),
  25. ),
  26. ),
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement