Magento: Check if a module is installed, enabled or active
Here is a quick code to check if a Magento module is installed, enabled or active. The functions isModuleEnabled and isModuleOutputEnabled are present in Mage_Core_Helper_Abstract class. $moduleName = 'Mage_Core'; // edit to your required module name if (Mage::helper('core')->isModuleEnabled($moduleName)) { echo "Module is enabled."; } else { echo "Module is disabled."; } You can also check … Read more