Zend Framework Architecture

firenetg

New Member
Hi Need to confirm Zend Framework Hierarchy of Objects ,
  • \[code\]Zend_Application\[/code\] has a Property Object Bootstrap
  • Bootstrap has a Property Object \[code\]Zend_Controller_Front\[/code\] inside
  • \[code\]Zend_Controller_Front\[/code\] has nested Objects like Request , Response , Plugins and also a dispatcher() method through dispatcher Interface
  • When \[code\]Zend_Front_Controller\[/code\]'s \[code\]dispatch()\[/code\] method is called a Controller Method is called as viewed in Request Object.
  • Now, \[code\]Zend_Controller_Action\[/code\] has a Variable called \[code\]$view\[/code\] which stores the Name of the PHTML Script
  • Now , \[code\]Zend_Controller_Action\[/code\] has a render() which basically does include() for the given PHTML Script
  • When everything is done by PHP Interpretor , the Response comes back to Browser
Did I get it right , If not please correctThanks
 
Back
Top