Respuestas:
Necesitamos llamar al método predeterminado disponible.
Simplemente use \Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig
, en su argumento de constructor y establezca la propiedad de clase:$this->scopeConfig = $scopeConfig;
Ahora para obtener el valor de configuración simplemente use
$this->scopeConfig->getValue('dev/debug/template_hints', \Magento\Store\Model\ScopeInterface::SCOPE_STORE);
Tengo obtener la respuesta de este enlace y remito este
Cree una función para obtener valores de configuración en el ayudante de su módulo personalizado.
public function getConfig($config_path)
{
return $this->scopeConfig->getValue(
$config_path,
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
y llame a cualquier lugar que desee, por ejemplo en test.phtml
$moduleStatus = $this->helper('Customvendorname\Custommodulename\Helper\Data')->getConfig('sectionid/groupid/fieldid');
En bloque y llamada de ayuda de esta manera:
$this->_objectManager->create('Customvendorname\Custommodulename\Helper\Data')->getConfig('sectionid/groupid/fieldid');
$this->_objectManager->create(...)
debe evitarse el uso.
He usado el siguiente método para recuperar las variables
if (empty($this->_data['welcome'])) {
$this->_data['welcome'] = $this->_scopeConfig->getValue(
'design/header/welcome',
\Magento\Store\Model\ScopeInterface::SCOPE_STORE
);
}
return $this->_data['welcome'];