Zend Framework 面包屑显示不可见元素

发布于 2024-10-15 22:34:02 字数 133 浏览 3 评论 0原文

我的网站中有一个导航栏,并且有可见和不可见的元素。我通过在 navigation.xml 中定义标签“visible”来做到这一点。我的问题是,当我想使用相同的导航制作面包屑时,我还需要显示“不可见”元素,有没有办法做到这一点?

谢谢。

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

茶底世界 2024-10-22 22:34:02

尝试设置 renderInvisible 标志,如下所示:

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

Try setting renderInvisible flag as follows:

<?php echo $this->navigation()->breadcrumbs()->setRenderInvisible(true); ?>
猫腻 2024-10-22 22:34:02

除了设置 setRenderInvisible(true) 之外,您可能还想禁用页面本身的链接:

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

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

如果页面需要 id,这会很有帮助。面包屑中的最后一个链接不会包含 id 等其他参数。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文