Magento 1에서 구성 데이터를 설정할 수 있다는 것을 알고 있습니다.
Mage::getModel('core/config')->saveConfig('my/path/whatever', $value);
다음을 사용하여 Magento 2에서 구성 데이터를 얻을 수 있습니다.
protected $_scopeConfig
public function __construct(\Magento\Framework\App\Config\ScopeConfigInterface $scopeConfig) {
$this->_scopeConfig = $scopeConfig;
}
+
$this->_scopeConfig->getValue( 'path/of/config', \Magento\Store\Model\ScopeInterface::SCOPE_STORE );
그러나 Magento 2에서 구성 데이터를 저장하는 방법을 알 수 없습니다.