i am using Zend_Navigation
i want to show the nav item in the breadcrumbs but hide it in my menu, how can i do that?
views:
160answers:
1
+3
A:
There are many choices, e.g.
- You may set
visible
parameter to false (eg. in xml config file), then usesetRenderInvisible(true/false)
on the navigation helper, - You may use separate containers,
- You may modify the container on the fly (
getContainer()
,getItemBy()
…)
takeshin
2010-08-02 19:53:49