I'm trying to use forms with modules, they should be stored inside the module. So at first my filestructure:
application/ (...other directories) modules/ group/ controllers/ IndexController.php (...controllers) forms/ Create.php views/ scripts/ (...view scripts) Bootstrap.php Within the IndexController, I'm trying to set the Form by
new Group_Form_Create() and the class in Create.php is of course Group_Form_Create. I get the following error message:
Fatal error: Class 'Group_Form_Create' not found in (...)\application\modules\group\controllers\IndexController.php on line 380 The Bootstrap.php with the class Group_Bootstrap is just an empty class. Actually, I'm using the default Zend structure, but it woun't work anyway. Any ideas wheres the problems or what could be a possible solution?