Magento MVC architecture & Module Development
>>>>>>>>>>>>>>>>>PHP MVC architecture<<<<<<<<<<<<<<<<<<<<<<<< In the typical MVC pattern, the flow of the application is something like this: 1) There is main entry point - index.php - from where the entire app routing mechanism is determined. 2) Based on this routing mechanism and requested URL pattern, the app will call the appropriate controller. 3) The controller then calls the appropriate views. 4) Finally, the view files collect the data from model files and display the data. >>>>>>>>>>>>>>>>>>Magento MVC architecture<<<<<<<<<<<<<<<<<<<<<< Magento's MVC architecture adds a few layers to the MVC pattern, but the basic flow of control of an application is l...