我有一個測試模塊。在測試模塊中,我在窗體文件夾中有一個窗體。無法訪問模塊控制器中的模塊表單
myproject的/應用/模塊/測試/形式/ TestForm.php
class Test_Form_TestForm extends Zend_Form {
//form elements
}
myproject的/應用/模塊/測試/控制器/ TestController.php
class Test_TestController extends Zend_Controller_Action {
public function indexAction() {
$this->view->form = new Test_Form_TestForm(); // this is generating error
}
} // end class
表格初始化在控制器中產生以下錯誤:
Fatal error: Class 'Test_Form_TestForm' not found in C:\wamp\www\student\application\modules\notification\controllers\NotificationController.php on line 16
如何使此表單在控制器中可訪問。同一類型的案件正在使用默認控制器。我知道我必須使用Form_指示器在引導程序中註冊模塊,但不知道確切的語法。
主Bootstrap中的最短路徑... – Awan 2011-02-08 18:24:18