- 01 – Magento Learning – Day 01/30 – Magento | Adobe Commerce – What Is Magento and Adobe Commerce?Magento is an open-source e-commerce platform written in PHP.It uses multiple other PHP frameworks such as Laminas (formerly known as Zend Framework) and Symfony.Magento source code is distributed …
- 02 – Magento learning – Day 2/30 – How to start with Magento or Adobe Commerce? Magento installationOverview: To start with Magento or Adobe Commerce (formerly known as Magento Commerce), you’ll need to follow these steps for the installation process: Remember to refer to the …
- 03 – Magento learning – Day 3/30 – Admin Overview of Magento and Adobe Commerce.The Magento Admin is the central hub where you can manage all aspects of your Magento store. From products and inventory to customers and orders, the Admin gives …
03 – Magento learning – Day 3/30 – Admin Overview of Magento and Adobe Commerce. Read More »
- 04 – Magento learning – Day 4/30 – How to create a custom extension in Magento?To create a custom extension in Magento 2, follow these steps: Set up the Extension Structure: In the root directory of your Magento installation, navigate to app/code. Create …
04 – Magento learning – Day 4/30 – How to create a custom extension in Magento? Read More »
- 05 – Magento learning – Day 5/30 – How to Create Custom theme in Magento?Create Theme Directory: Inside your Magento installation, navigate to the app/design/frontend directory. Create a directory for your theme. For example, VendorName/theme. Create Theme Configuration: Inside your theme directory, …
05 – Magento learning – Day 5/30 – How to Create Custom theme in Magento? Read More »
- 06 – Magento learning – Day 6/30 – Database patterns used on MagentoMagento uses several database patterns to manage its data. Here are some of the key patterns used in the Magento database architecture: Entity-Attribute-Value (EAV): Magento extensively uses the …
06 – Magento learning – Day 6/30 – Database patterns used on Magento Read More »
- 07 – Magento learning – Day 7/30 – How MVC exacly works on MagentoMagento 2 follows the Model-View-Controller (MVC) architectural pattern to organize and manage the codebase. The MVC pattern helps to separate the concerns of data, presentation, and application logic, …
07 – Magento learning – Day 7/30 – How MVC exacly works on Magento Read More »
- 08 – Magento learning – Day 8/30 – Magento design patternsMagento 2 follows several design patterns to achieve modularity, extensibility, and maintainability. Here are some of the key design patterns used in Magento 2: Model-View-Controller (MVC) Pattern:As mentioned …
08 – Magento learning – Day 8/30 – Magento design patterns Read More »
- 09 – Magento learning – Day 9/30 – Magento Module structure in detailapp/code/VendorName/ModuleName/├── Block/├── Controller/├── etc/│ ├── module.xml│ ├── di.xml│ ├── routes.xml│ └── …├── Helper/├── Model/├── Setup/│ ├── InstallSchema.php│ ├── UpgradeSchema.php│ ├── InstallData.php│ ├── UpgradeData.php│ └── …├── Ui/│ └── component/├── …
09 – Magento learning – Day 9/30 – Magento Module structure in detail Read More »
- 10 – Magento learning – Day 10/30 – Magento commands OverviewMagento 2 provides a set of CLI (Command Line Interface) commands that you can use to perform various tasks, such as managing the application, installing modules, running tests, …
10 – Magento learning – Day 10/30 – Magento commands Overview Read More »
- 11 – Magento learning – Day 11/30 – Deployment modes and Differences between themMagento 2 has three deployment modes: default, developer, and production. Each mode has its own set of features and benefits, and the best mode for you will depend …
11 – Magento learning – Day 11/30 – Deployment modes and Differences between them Read More »
- 15 – Magento learning – Day 15/30 – Design Patterns – Blocks