Magento: How to get list of all modules programmatically?

Here, I will show you how you can get list of all modules in your Magento installation. It’s a simple code. Get all modules You can find getNode() function in the class Mage_Core_Model_Config. $modules = Mage::getConfig()->getNode('modules')->children(); From the code above, you get all the modules information like whether the module is active or not, the … Read more