Zend Framework 和自定义导航容器

发布于 2024-09-30 01:16:38 字数 255 浏览 1 评论 0原文

Zend 文档中,他们写了有关创建导航容器的内容。但他们没有解释我应该在哪里创建它们。有人知道吗?

我还想知道自定义导航容器是否扩展或覆盖包含静态链接的 navigation.xml 文件。

(我想制作一个自定义导航容器来添加数据库中的动态链接)

In Zend's Documentation they write about creating Navigation Containers. But they don't explain where I should create them. Does anyone know that?

I'm also wondering if a custom Navigation Container extends or overwrites the navigation.xml file which contains the static links.

(I want to make a custom Navigation Container to add dynamic links from my database)

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

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

发布评论

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

评论(1

撩发小公举 2024-10-07 01:16:38

(我想制作一个自定义导航
用于添加来自我的动态链接的容器
数据库)

创建一个控制器插件并初始化那里的容器。

如果需要,您可以通过在请求参数上创建条件甚至根据需要切换布局来将其限制为仅在特定模块/控制器/操作上运行。

您还可以将导航容器创建为模型,或在现有模型中创建 getNavigation() 并在需要时随时随地使用。

另一个解决方案是在视图助手中动态创建导航容器。

选择最适合您的情况的一种(例如,取决于您如何处理缓存)。

(I want to make a custom Navigation
Container to add dynamic links from my
database)

Create a controller plugin and initialize the containers there.

If you need, you may restrict it to run only on specific module/controller/action by creating conditions on request parameters or even switch layout if needed.

You may also create navigation container as a model, or create getNavigation() in your existing model and use in anywhere, whenever you need it.

Another solution is to create the navigation container in the view helper on the fly.

Choose the one which works best in your case (eg. depending how do you handle cache).

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