更换控制器最快、最简单的方法模块
我正在开发我的第一个 Zend 网站,并且刚刚完成了后台工作。问题是我没有创建任何模块,但现在我必须开发前台,我想创建一个不同的模块。
知道我的后台已经有大约 20 个控制器,我如何轻松地将它们的模块更改为“管理”?
然后我会将前台放置在“公共”模块中,而主引擎将保留在“默认”模块中。
感谢您的帮助 !
I am developing my first Zend website, and I just finished the Back-office. The problem is that I did not create any module, but now that I have to develop the Front-office I would like to create a different module.
Knowing that I already have about 20 controllers for my back-office, how could I easily change their module to "Administration" ?
Then I would place the front office in a "Public" module and the main engines will be left in the "Default" module.
Thanks for your help !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我假设您使用
Zend_Application
。在 application.ini 中启用模块:
为新的“公共”模块创建一个新的文件层次结构:
后台:
前端/公共:
I assume you use
Zend_Application
.Enable modules in your application.ini:
Create a new file hierarchie for your new "Public" module:
Back-office:
Frontend / Public: