답변:
아마도 당신은 이것을 찾고 있습니까?
lib / internal / Magento / Framework / Module / 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 메소드가 있습니다. v. 2.2.0부터 사용 중단
사용 예 :
if (!$this->_moduleManager->isEnabled('Magento_Reports')) {