我正在尝试将表单与模块一起使用,它们应该存储在模块内。所以起初我的文件结构:
application/
(...other directories)
modules/
group/
controllers/
IndexController.php
(...controllers)
forms/
Create.php
views/
scripts/
(...view scripts)
Bootstrap.php
在 IndexController 中,我试图通过以下方式设置表单
new Group_Form_Create()
Create.php 中的类当然是 Group_Form_Create。我收到以下错误消息:
Fatal error: Class 'Group_Form_Create' not found in (...)\application\modules\group\controllers\IndexController.php on line 380
带有 Group_Bootstrap 类的 Bootstrap.php 只是一个空类。实际上,我使用的是默认的 Zend 结构,但无论如何它都不起作用。问题出在哪里或可能的解决方案有什么想法?