ZF2 navigation with skeleton default route

singwhaaat

New Member
Currently i'm playing with Zend Navigation in ZF2 and i come across the following problemin my application module i have the following config (default skeleton app)\[code\]....'router' => array( 'routes' => array( 'home' => array( 'type' => 'Zend\Mvc\Router\Http\Literal', 'options' => array( 'route' => '/', 'defaults' => array( 'controller' => 'Application\Controller\Index', 'action' => 'index', ), ), ), // The following is a route to simplify getting started creating // new controllers and actions without needing to create a new // module. Simply drop new controllers in, and you can access them // using the path /application/:controller/:action 'application' => array( 'type' => 'Literal', 'options' => array( 'route' => '/application', 'defaults' => array( '__NAMESPACE__' => 'Application\Controller', 'controller' => 'Index', 'action' => 'index', ), ), 'may_terminate' => true, 'child_routes' => array( 'default' => array( 'type' => 'Segment', 'options' => array( 'route' => '/[:controller[/:action]]', 'constraints' => array( 'controller' => '[a-zA-Z][a-zA-Z0-9_-]*', 'action' => '[a-zA-Z][a-zA-Z0-9_-]*', ), 'defaults' => array( ), ), ), ), ), 'info' => array( 'type' => 'Zend\Mvc\Router\Http\Literal', 'options' => array( 'route' => '/phpinfo', 'defaults' => array( 'controller' => 'Application\Controller\Index', 'action' => 'info', ), ), ), ),),\[/code\]\[code\]....'navigation' => array( 'default' => array( array( 'label' => 'Home', 'route' => 'home', 'order' => -1, 'pages' => array( array( //<-- this isn't working gives a link to /application 'label' => 'Telefoonboek', 'route' => 'application', 'module' => 'application', 'controller' => 'telefoonboek', 'action' => 'index', ), array( //<-- this works 'label' => 'Telefoonboek2', 'uri' => '/application/telefoonboek', ), array( //<-- this works 'label' => 'info', 'route' => 'info', ), ), ), ),),....\[/code\]I'm currently only able to make the navigation work when i add a route for "every" item i want in the menu. But this is kind of a weird solution.So is this the right way to make the menu work or do i need to do something fancy with the pages?
 
Top