Check whether a module is enabled or not in Magento

Use the below code to check whether a module is enabled or not


echo Mage::getConfig()->getModuleConfig('Module_Name')->is('active', 'true');

echo Mage::helper('core')->isModuleEnabled('Module_Name');

Cheers!

Amjath

Leave a Reply

Your email address will not be published. Required fields are marked *