Zend Framework 和自定义导航容器
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个控制器插件并初始化那里的容器。
如果需要,您可以通过在请求参数上创建条件甚至根据需要切换布局来将其限制为仅在特定模块/控制器/操作上运行。
您还可以将导航容器创建为模型,或在现有模型中创建
getNavigation()
并在需要时随时随地使用。另一个解决方案是在视图助手中动态创建导航容器。
选择最适合您的情况的一种(例如,取决于您如何处理缓存)。
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).