Yanıtlar:
Mevcut varsayılan yöntemi çağırmamız gerekir.
Just Use \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
, Yapıcı değişkeninizde ve class özelliğini ayarlayın:$this->scopeConfig = $scopeConfig;
Şimdi sadece yapılandırma değerini almak için kullanın
$this->scopeConfig->getValue('dev/debug/template_hints', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
Bu bağlantıdan cevabı aldım ve bu konuyu bakın
Özel modülünüzün yardımcısında yapılandırma değerleri almak için bir işlev oluşturun.
public function getConfig($config_path)
{
return $this->scopeConfig->getValue(
$config_path,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
ve örneğin, test.phtml dosyasında istediğiniz yeri arayın
$moduleStatus = $this->helper('Customvendorname\Custommodulename\Helper\Data')->getConfig('sectionid/groupid/fieldid');
Blok ve yardımcı çağrı şöyle:
$this->_objectManager->create('Customvendorname\Custommodulename\Helper\Data')->getConfig('sectionid/groupid/fieldid');
$this->_objectManager->create(...)
kaçınılmalıdır.
Değişkenleri geri almak için aşağıdaki yöntemi kullandım
if (empty($this->_data['welcome'])) {
$this->_data['welcome'] = $this->_scopeConfig->getValue(
'design/header/welcome',
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
return $this->_data['welcome'];