如何限制Zend_Navigation的深度?

发布于 2024-10-08 07:31:23 字数 250 浏览 5 评论 0原文

我正在使用 Zend_Navigation 创建一个类别侧边栏。在我的引导程序中,我放入了所有页面、产品、类别以及我将来可以找到的任何其他内容。我使用 $navigation->findAllBy('class', 'categories') 获取我的类别链接,它返回我所有类别的数组。这是正常工作和显示的。

现在...

我如何限制子类别/页面的深度?因此,我有(例如)2 个级别的类别和子类别,而不是(目前)6 个级别?

I am creating a categories sidebar using Zend_Navigation. In my bootstrap I am putting in all my pages, products, categories and anything else I can find in the future. I am getting my categories links out using $navigation->findAllBy('class', 'categories') which is returning an array of all my categories. This is working and displaying as it should.

Now...

How do I limit the depth of the sub-categories / pages? So that instead of (at the moment) 6 levels of categories and sub-categories, I have (for example) 2?

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

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

发布评论

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

评论(1

不必在意 2024-10-15 07:31:23
$this->navigation()->menu()->setMaxDepth(2)
$this->navigation()->menu()->setMaxDepth(2)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文