পৃষ্ঠাসমূহ

Search Your Article

CS

 

Welcome to GoogleDG – your one-stop destination for free learning resources, guides, and digital tools.

At GoogleDG, we believe that knowledge should be accessible to everyone. Our mission is to provide readers with valuable ebooks, tutorials, and tech-related content that makes learning easier, faster, and more enjoyable.

What We Offer:

  • 📘 Free & Helpful Ebooks – covering education, technology, self-development, and more.

  • 💻 Step-by-Step Tutorials – practical guides on digital tools, apps, and software.

  • 🌐 Tech Updates & Tips – simplified information to keep you informed in the fast-changing digital world.

  • 🎯 Learning Support – resources designed to support students, professionals, and lifelong learners.

    Latest world News 

     

Our Vision

To create a digital knowledge hub where anyone, from beginners to advanced learners, can find trustworthy resources and grow their skills.

Why Choose Us?

✔ Simple explanations of complex topics
✔ 100% free access to resources
✔ Regularly updated content
✔ A community that values knowledge sharing

We are continuously working to expand our content library and provide readers with the most useful and relevant digital learning materials.

📩 If you’d like to connect, share feedback, or suggest topics, feel free to reach us through the Contact page.

Pageviews

Monday, March 6, 2017

Magento - Architecture

In this chapter, we are going to discuss the architectural style of Magento, for implementing user interfaces. The following diagram shows architecture of Magento:

Magento Architecture The Magento architecture comes with Models, Views and Controllers.
  • User Request: The user sends a request to a server in the form of request message where web browsers, search engines etc acts like clients.
  • View: View represents the data in particular format. Views represents the user interface which is responsible for displaying the response for user request. It specifies an idea behind the presentation of the model's data to the user. Views are used to reflect "how your data should looks like".
  • Controller: The controller is responsible for responding to user input and perform interactions on the data model objects. It uses models to process the data and send response back to the view.
  • Model: The model is responsible for managing the data of the application. It contains logic of the data and represents basic data object in the framework. It responds to request from the view and responds to the instructions from the controller to update itself.
  • Database: It contains the information which is requested from the user. When user requests data, view sends requests to controller, controller requests from the model and model fetches the required information from the database and responds to the user.
  • WSDL: It stands for Web Services Description Language. It is used for describing web services and how to access them.

No comments:

Post a Comment