Zend Framework Breadcrumb show invisible elements

1.4k Views Asked by At

I have a Navigation bar in my site and i have visible and invisible elements. I did that by defining the tag "visible" in my navigation.xml. My problem is that when I want to make breadcrumb using that same navigation I need to also display the "not visible" elements, is there a way to do this??.

Thanks.

2

There are 2 best solutions below

0
On

Try setting renderInvisible flag as follows:

<?php echo $this->navigation()->breadcrumbs()->setRenderInvisible(true); ?>
0
On

In addition to setting setRenderInvisible(true), you may want to disable a link for the page itself:

$visible = !empty($this->id);

$breadCrumbs = $this->navigation('navigation')->breadcrumbs()
    ->setLinkLast($visible) // link last page
    ->setSeparator(' /' . PHP_EOL)
    ->setRenderInvisible(true)
;

This is helpful if the page requires an id. The last link in the bread crumbs will not include additional parameters such as an id.