getConfigValue( \Magefan\Blog\Helper\Config::XML_PATH_EXTENSION_ENABLED, \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } /** * Retrieve store config value * * @return string | null | bool */ protected function getConfigValue($path) { $config = $this->_objectManager->get('\Magento\Framework\App\Config\ScopeConfigInterface'); return $config->getValue( $path, \Magento\Store\Model\ScopeInterface::SCOPE_STORE ); } /** * Throw control to cms_index_noroute action. * * @return void */ protected function _forwardNoroute() { $this->_forward('index', 'noroute', 'cms'); } }