Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. application/
  2. (...other directories)
  3. modules/
  4. admin/
  5. controllers/
  6. IndexController.php
  7. forms/
  8. Login.php
  9. views/
  10. scripts/
  11. (...view scripts)
  12. Bootstrap.php
  13.  
  14. class Admin_Form_Login extends Zend_Form
  15. {
  16. public function init()
  17. {
  18.  
  19. }
  20. }
  21.  
  22. class Admin_IndexController extends Zend_Controller_Action {
  23. public function indexAction()
  24. {
  25. $form = new Admin_Form_Login;
  26. }
  27. }
  28.  
  29. Fatal error: Class 'Admin_Form_Login' not found in E:xampphtdocsnovoapplicationmodulesadmincontrollersIndexController.php on line 13.
  30.  
  31. I am not sure what I am doing wrong. anybody, please help me.
  32.  
  33. resources.modules = []
  34. resources.views = []
  35. resources.frontController.moduleDirectory = APPLICATION_PATH . "/modules"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement