Magento 1. Creating a module. Part 1. A bit of theory

May 21, 2017 8 Yehor Rykhnov

Create a module for Magento 1. In this part, in a nutshell about the architecture and configuration of Magento.

Magento is written using the php library of Zend and uses MVC, i.e. here there are models, a controller, views.

All the code lies in the folder /app/code

Templates in the folder /design

Settings /etc

Localization /locale

The /app/code folder has three more folders:

  1. community - code developed by the Magento community
  2. core - Magento Developer Code
  3. local - code of other developers

Configuration

Configuration files are saved as a xml document.

The basic configuration files are located in the app/etc.

app/etc/config.xml - module configuration file and everything that concerns their work.

app/etc/local.xml - system configuration. Includes data to connect to the database. This file is located in .gitignore and it is very convenient to use different settings on the server and on the local machine.

app/etc/modules - module configurations are stored here. Basically, these files make themselves felt Magento. In the minimal version, the activity of the module is indicated, the location in the folders (community, core, local, see the description above), dependencies on other modules and other information.

Each module has its own configuration files, at least - My/NewPlugin/etc/config.xml

When running, Magento reads its main configuration file, and then, reads configuration fileof modules and glues them into one big config.

More details about the structure of templates will be a separate article.

List of articles on the current topic: Magento и magento start.