views:

160

answers:

1

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?

+3  A: 

There are many choices, e.g.

  • You may set visible parameter to false (eg. in xml config file), then use setRenderInvisible(true/false) on the navigation helper,
  • You may use separate containers,
  • You may modify the container on the fly (getContainer(), getItemBy()…)
takeshin