如何配置 zf cli 工具来识别多个应用程序子目录?

发布于 2024-12-19 18:32:40 字数 799 浏览 4 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

空城之時有危險 2024-12-26 18:32:40

您可以为此使用模块。 Zend_Tool 支持在模块内创建控制器。 手册有很好的解释。

使用 Zend_Tool 创建移动模块:

zf create module mobile

使用 Zend_Tool 在移动模块内创建 IndexController:(

zf create controller Index 1 mobile

“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:

zf create module mobile

To use Zend_Tool to create the IndexController within the mobile module:

zf create controller Index 1 mobile

(The "1" is important!)

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