Magento 2 ile core_config_data'da nasıl bir değer ayarlayabilirim?


13

Magento 1'de yapılandırma verilerini ayarlayabileceğinizi biliyorum:

Mage::getModel('core/config')->saveConfig('my/path/whatever', $value);

ve Magento 2'de yapılandırma verilerini aşağıdakilerle alabilirsiniz:

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 );

Ama Magento 2'de yapılandırma verilerini nasıl kaydedebileceğimi anlayamıyorum

Yanıtlar:


24

Verileri magento2 core_config_data içine böyle kaydetmelisiniz

    use Magento\Framework\App\Config\ScopeConfigInterface;

    /**
     *  @var \Magento\Framework\App\Config\Storage\WriterInterface
     */
    protected $configWriter;

    /**
     *
     * @param \Magento\Framework\App\Config\Storage\WriterInterface $configWriter
     */
    public function __construct(
        ....
        \Magento\Framework\App\Config\Storage\WriterInterface $configWriter
        .....
    )
    {
        $this->configWriter = $configWriter;
    }

arama yönteminize aşağıdaki satırı ekleyin:

$this->configWriter->save('my/path/whatever',  $value, $scope = ScopeConfigInterface::SCOPE_TYPE_DEFAULT, $scopeId = 0);

6

ConfigInterface sınıfını enjekte edebilir ve değeri kaydetmek için kullanabilirsiniz.

protected $_configInterface;

public function __construct(
    \Magento\Framework\App\Config\ConfigResource\ConfigInterface $configInterface
) {
    $this->_configInterface = $configInterface;
}

Sonra yönteminde kullanabilirsiniz

$this->_configInterface
    ->saveConfig('section/group/field', $value, 'default', 0);

1
Yollarınızın kırpılmasına gerek olmadığından emin olduğunuz için bunu yapmayın. ConfigWriter
Chuvisco
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.