在 zend 框架中创建多个博客
您好,我现在正在使用 zend 开发一个 CMS 我的问题是如何在这个 CMS 中拥有两个或更多博客我可以制作具有单独布局的模块,但我必须将哪些代码添加到我的布局中两个显示博客名称或其他...也许是另一种方式?
Hi I'm developing a CMS with zend now My problem is how can I have two or more blog in this CMS I can make module with separate layout but which code I must add to my layout two show blogname or else ... maybe is another way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您只需向操作添加另一个参数:
module/controller/action/..../whichblog/second/
并创建切换布局和逻辑的控制器插件。您可能有兴趣创建博客服务而不是博客模块。
You may just add another parameter to the action:
module/controller/action/..../whichblog/second/
and create the controller plugin switching the layout and the logic.You may be interested in creating blog service instead blog module.