要获取商店配置数据,我会使用以下代码:
$data = Mage::getStoreConfig('my/path/whatever');
现在,我怎么能保存到那个节点?我尝试了来自Override Magento Config的Alans建议,但它对我不起作用。
谢谢!
答案 0 :(得分:12)
请尝试以下操作:
$value = "100";
Mage::getModel('core/config')->saveConfig('my/path/whatever', $value);
OR
$resource = $this->getResourceModel();
$resource->saveConfig(rtrim('my/path/whatever', '/'), 1, 'default', 0);
答案 1 :(得分:0)
帝国解决方案是正确的,但请记住在它之后清理缓存。所以使用像
这样的东西$value = "100";
Mage::getModel('core/config')->saveConfig('my/path/whatever', $value);
Mage::getModel('core/config')->cleanCache();