Hi Need to confirm Zend Framework Hierarchy of Objects ,
Zend_Application
has a Property Object Bootstrap- Bootstrap has a Property Object
Zend_Controller_Front
inside Zend_Controller_Front
has nested Objects like Request , Response , Plugins and also a dispatcher() method through dispatcher Interface- When
Zend_Front_Controller
'sdispatch()
method is called a Controller Method is called as viewed in Request Object. - Now,
Zend_Controller_Action
has a Variable called$view
which stores the Name of the PHTML Script - Now ,
Zend_Controller_Action
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 correct
Thanks