5

要将所有更改迁移到所有环境,我使用数据库升级脚本。我使用它们来创建不同的实例(客户、税收设置等),但通常用于迁移静态块和配置设置。

迁移静态块:

<?php
$block = Mage::getModel('cms/block');
$data = array(
   'title' => 'Block title',
   'identifier' => 'block_identifier',
   'content' => 'block content',
   'is_active' => 1,
   'stores' => array(0 => Mage_Core_Model_App::ADMIN_STORE_ID),
);

$block->addData($data);
$block->save();
?>

要迁移设置:

<?php
Mage::getModel('core/config')->saveConfig('design/theme/default', 'theme');
?>

我知道我们可以通过 config.xml 修改 Magento 设置:

<default>
    <general>
        <store_information>
            <name>My Store</name>
        </store_information>
        <content_staging>
            <block_frontend_stub>home</block_frontend_stub>
        </content_staging>
    </general>
</default>

但据我了解,只有在路径:general/store_information/name
general/content_staging/block_frontend_stub 不存在于 db 或它们的值等于 NULL 时,我们才能以这种方式修改设置,如果值不为 NULL,我们无法修改它通过 xml。我在本地环境中对其进行了测试,我认为我是对的,但在 Magento 找不到负责通过 xml 设置配置的代码。我对吗?

你能告诉我负责它的代码部分吗?Magento 的最佳迁移实践是什么?也许我什么都不知道:)

4

2 回答 2

4

你是对的,配置 xml 文件中指定的值被core_config_data表中的值覆盖。正如 B00MER 指出的那样,有问题的代码位于Mage_Core_Model_Config::init()

public function init($options=array())
{
    $this->setCacheChecksum(null);
    $this->_cacheLoadedSections = array();
    $this->setOptions($options);
    $this->loadBase();

    $cacheLoad = $this->loadModulesCache();
    if ($cacheLoad) {
        return $this;
    }
    $this->loadModules();
    $this->loadDb();
    $this->saveCache();
    return $this;
}

请注意,loadDb()在 之后调用loadModules()
实际的合并逻辑在配置资源模型Mage_Core_Model_Resource_Config::loadToXml()中。

对于每个全局设置,这称为:

$xmlConfig->setNode('default/' . $r['path'], $value);

对于每个网站范围设置,这称为:

$nodePath = sprintf('websites/%s/%s', $websites[$r['scope_id']]['code'], $r['path']);
$xmlConfig->setNode($nodePath, $value);

对于每个网站范围设置,这称为:

$nodePath = sprintf('stores/%s/%s', $stores[$r['scope_id']]['code'], $r['path']);
$xmlConfig->setNode($nodePath, $value);

这稍微简化了,但是如果您需要更多详细信息,可以查看源代码。

于 2012-07-04T13:56:08.567 回答
2

您可以在每个服务器实例上core_config_data通过 via指定设置:local.xml

<config>
   <stores>
       <store_code>
            <!-- config value for a store  (web/unsecure/base_url)  -->
            <web>
                <unsecure>
                      <base_url>http://example-magento-store.com</base_url>
               </unsecure>
            </web>
        </store_code>
   </stores>
   <websites>
       <website_code>
            <!-- config value for a website  (web/unsecure/base_url)  -->
            <web>
                <unsecure>
                      <base_url>http://another-example-magento-store.com</base_url>
               </unsecure>
            </web>
        </website_code>
   </websites>
   <default>
      <!-- default config value (web/unsecure/base_url) -->
       <web>
            <unsecure>
                   <base_url>http://default-magento-store.com</base_url>
              </unsecure>
        </web>
   </default>
</config>

来源:https ://twitter.com/IvanChepurnyi/status/111544548806758403

如果您好奇 Magento 在哪里设置 XML 配置文件中的数据,请查看该类:Mage_Core_Model_Config

就最佳实践而言,有很多关于这些主题的信息:

于 2012-07-03T11:20:25.483 回答