Answers:
也许您在寻找这个?
lib /内部/ Magento /框架/模块/Manager.php
/**
* Whether a module is enabled in the configuration or not
*
* @param string $moduleName Fully-qualified module name
* @return boolean
*/
public function isEnabled($moduleName)
{
return $this->_moduleList->has($moduleName);
}
在同一类中也有isOutputEnabled方法。 从2.2.0版开始
用法示例:
if (!$this->_moduleManager->isEnabled('Magento_Reports')) {