How MVC works in magento

15,086

Solution 1

This Magento MVC flowchart may assist

Solution 2

you can take the magento basics course for free today http://www.magentocommerce.com/services/on-demand

Solution 3

The only thing different in Magento's MVC model that is different from other MVCs is the way it use Block. In normal MVC, variables are passed to the View through Controller. However, in Magento, Views get data from Block, and Block gets its data from Model.

Solution 4

As we know, the implementation of a “Tier Model” is a large part of an MVC framework. It represents the details of your application and handles data in applications. Magento Models play an even greater role, because they usually contain the “Business Logic”.

The Magento Object Relational Mapping (ORM) has very important role in the process of working with database. Here We will go deeply to understand ORM. You can follow:

Share:
15,086
RAAAAM
Author by

RAAAAM

Under Construction .

Updated on June 28, 2022

Comments

  • RAAAAM
    RAAAAM almost 2 years

    Thanks for the previous replies.

    I am new to Magento and don't know how MVC operates in this framework. I want to display "Hello world" using MVC format--i.e., the controller imports the string from the model and transmits it to the view for display. Can anyone give me an idea of how MVC works in Magento?