Where in my application should I define my top level and lower-level pages for use by Zend Navigation? My top level navigation bar view helper is going to be separate from the view helper that generates the sub navigation.
|
feedback
|
|
A simpler way is to define all your navigation in a single place. It supports unlimited nested (child) pages, meaning you can have your main menu as the base level and then the sub-pages under each main page for your sub-menus. Using the View Helpers you can easy output only the sub-page menu for the current active page automatically. This way keeps all your navigation in a single place, for future maintainability. For example, I define my site-wide navigation within the application.ini file using the Application Resource, and then within my view scripts use the Navigation View Helpers to format my menus. This is a small extract from my application.ini file navigation config in a project I am working on:
And within my layout.phtml file:
So when a user goes to the Exhibits page, they only see the children of that page, and the same with the Sales page. Pretty simple and very effective. | |||||
feedback
|
|
I usually do this in the controller plugin. Here I can create navigation based on the current route or request parameters, and then easily pass to the view/layout from the application resource and switch with another one, when navigation is redesigned. | |||
|
feedback
|