Simplest way to override core files of magento

All Important core files of magento is defined into

App >> code >> core >> Mage

In case of even very little customization in magento core functionality we need to add some of our custome code into the core code of magento. Here it is required to override core magento files which resides on the path which i have already mentioned above.

To override these files you can simply create the same folder structure in

App >> code >> local

You can create “Mage” folder here and then you can follow same folder structure and you can override any files here.

The basic idea behind behind it is that if “Mage” structure is available in local folder then magento read this file from here only and once the required file is not available in local folder then magento looks into the core “Mage” folder.

For example if you have to modify

App >> Code >> Core >> Mage >> Customer >> Model >> Entity >> Setup.php

then copy this Setup.php to following path

App >> Code >> Local >> Mage >> Customer >> Model >> Entity >> Setup.php

Note: If you will try to override the controller (let AccountController.php) it woun’t get overridden with this technique. To get more on that read “override core controllers of Magento”

 

The following two tabs change content below.

Chandra Shekhar

GCP Architect
Chandra Shekhar Pandey is Google certified Cloud engineer, I am Magento2 Trained developer. Having huge experience in designing cloud solution. I have around 12 years of experience with world enterprise IT companies and fortune 500 clients. During my architecture design I am always caring about high availability, fast performance and resilient system. From the programmer background I have huge experience in LAMP stack as well. Throughout my carrier I have worked on Retail, E-Learning, Video Conferencing and social media domain. The motive of creating cutehits was just to share the knowledge/solutions I get to know during my day to day life so that if possible I can help someone for same problems/solutions. CuteHits.com is a really a very effort for sharing knowledge to rest of the world. For any query/suggestion about same you can contact me on below details:- Email: shekharmca2005 at gmail.com Phone: +91-9560201363

Latest posts by Chandra Shekhar (see all)

You may also like...