How Magento's MVC works?
Submitted by: Administrator1) When you enter the URL (something like http://mysite.com/frontname/controller/method/param1/value1/param2/value2), this URL is intercepted by one PHP file called index.php which instantiates Magento application.
2) Magento application instantiates Front Controller object
3) Further, front controller instantiates Router objects (specified in module's config.xml, global tag)
4) Now, Router is responsible to "match" the frontname which is in our URL
5) If "match" is found, it sees controller name and method name in the URL, which is finally called.
6) Now depending on what is written in action name (method name), it is executed. If any models are called in it, the controller method will instantiate that model and call the method in it which is requested.
7) Then the controller action (method) instantiate the Layout object, which calls Block specified for this action (method) name (Each controller action name have block and template file associated with it, which can be found at app/design/frontend or adminhtml/namespace/module/layout/module.xml file, name of layout file (module.xml) can be found in config.xml of that module, in layout updates tag).
8) Template file (.phtml) now calls the corresponding block for any method request. So, if you write $this->methodName in .phtml file, it will check "methodName" in the block file which is associated in module.xml file.
9) Block contains PHP logic. It references Models for any data from DB.
10) If either Block, Template file or Controller need to get/set some data from/to database, they can call Model directly like Mage::getModel('modulename/modelname').
Submitted by:
2) Magento application instantiates Front Controller object
3) Further, front controller instantiates Router objects (specified in module's config.xml, global tag)
4) Now, Router is responsible to "match" the frontname which is in our URL
5) If "match" is found, it sees controller name and method name in the URL, which is finally called.
6) Now depending on what is written in action name (method name), it is executed. If any models are called in it, the controller method will instantiate that model and call the method in it which is requested.
7) Then the controller action (method) instantiate the Layout object, which calls Block specified for this action (method) name (Each controller action name have block and template file associated with it, which can be found at app/design/frontend or adminhtml/namespace/module/layout/module.xml file, name of layout file (module.xml) can be found in config.xml of that module, in layout updates tag).
8) Template file (.phtml) now calls the corresponding block for any method request. So, if you write $this->methodName in .phtml file, it will check "methodName" in the block file which is associated in module.xml file.
9) Block contains PHP logic. It references Models for any data from DB.
10) If either Block, Template file or Controller need to get/set some data from/to database, they can call Model directly like Mage::getModel('modulename/modelname').
Submitted by:
Read Online Magento Job Interview Questions And Answers
Top Magento Questions
☺ | What is Magento? |
☺ | Explain about the Modules of Magento? |
☺ | What are the commonly used block types? What is the special in core/text_list block type? |
☺ | Why I got Access denied error after installing new Magento extension through downloader and try to access its configuration settings? |
☺ | Explain about the history of Magento? |
Top Application Program Categories
☺ | AutoCAD Interview Questions. |
☺ | Microsoft Office Interview Questions. |
☺ | Microsoft Outlook Interview Questions. |
☺ | Microsoft Excel Interview Questions. |
☺ | MATLAB Interview Questions. |