如何配置 zf cli 工具来识别多个应用程序子目录?
我正在使用 Zend Framework 1.11.10 开发一个应用程序。我使用这篇文章来制作子目录树。我现在面临的问题是我无法使用提供的 CLI ZF 工具来生成控制器视图存根。我正在开发一个应用程序,其功能会根据访问方法而有所不同。当基本 www.example.com 地址前面带有字母 m (m.example.com) 时,我希望提供针对智能手机轻量级定制的移动内容。请告诉我,如何管理更改 cli zf 工具配置,我希望能够发出类似于 *zf create view|controller|action ObjectName --application_namedesktop|mobile* 的命令
└─ rdp
├─ .svn
├─ application
│ ├─ .svn
│ ├─ desktop
│ │ ├─ .svn
│ │ ├─ configs
│ ├─ controllers
│ │ ├─ models
│ │ └─ views
│ └─ mobile
│ ├─ .svn
│ ├─ configs
│ ├─ controllers
│ ├─ models
│ └─ views
├─ docs
├─ library
├─ public
└─ tests
I am developing an application using Zend Framework 1.11.10. I have used this article to make sub-directory tree. The problem I'm facing now is that I can't use provided CLI ZF tool to generate controller-view stubs. I am developing an application which's functionality will vary depending on the accessing method. When the base www.example.com address will be prepended with letter m (m.example.com) I would like to serve mobile content which will be lightweight tailored for smart-phones. Please tell me, how to manage to change cli zf tool configuration, I would like to be able to issue commands similar with *zf create view|controller|action ObjectName --application_name desktop|mobile*
└─ rdp
├─ .svn
├─ application
│ ├─ .svn
│ ├─ desktop
│ │ ├─ .svn
│ │ ├─ configs
│ ├─ controllers
│ │ ├─ models
│ │ └─ views
│ └─ mobile
│ ├─ .svn
│ ├─ configs
│ ├─ controllers
│ ├─ models
│ └─ views
├─ docs
├─ library
├─ public
└─ tests
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为此使用模块。 Zend_Tool 支持在模块内创建控制器。 手册有很好的解释。
使用 Zend_Tool 创建移动模块:
使用 Zend_Tool 在移动模块内创建 IndexController:(
“1”很重要!)
You could use modules for this. Zend_Tool supports creating controllers within modules. The manual has a good explanation.
To use Zend_Tool to create the mobile module:
To use Zend_Tool to create the IndexController within the mobile module:
(The "1" is important!)