Magento:设置刚刚创建的网站的配置值?

时间:2010-08-30 15:06:30

标签: web magento initialization config

我正在以程序方式创建网站/用户等......

问题在于:创建网站时,我无法立即设置配置值。

代码:

<?php
/* Website information */
$website_data = array(
            'name' => 'Company name',
            'code' => 'website_company_1',
            'sort_order' => '1',
            );

/* Save website */
$website = Mage::getModel('core/website'); 
$website->setData($website_data);
$website->save();

/* Get website code */
$web_code = $website->getCode();

/* R-int stores */
Mage::app()->reinitStores();

/* Config data array example */
$data = array('name' => 'Company 1', 'phone' => '056 22 33 61')

/* Set config values in array */
$groups = array();
 foreach($data as $key => $value){
 $groups['store_information']['fields'][$key]['value'] = $value;
 }


/* Save config values */
Mage::getModel('adminhtml/config_data')
      ->setSection('general')
      ->setWebsite($web_code)
      ->setStore(NULL)
      ->setGroups($groups)
      ->save();


/* Re-init again */
Mage::app()->reinitStores();

但是,由于某些原因,这不起作用,但如果我先创建一个网站(使用相同的代码),那么之后执行此配置保存功能,它可以正常工作。好像它需要先加载新页面才能设置/更新配置值。我认为重新初始化会解决这个问题,但它不会...

思想?

2 个答案:

答案 0 :(得分:7)

您应该为此目的使用安装/升级脚本(这些是模块的 sql 文件夹中的脚本)。您甚至可能希望创建一个特定于设置的模块,使用/来运行这些模块。

只需在模块的global / resources节点中声明设置资源,然后创建完成此操作所需的文件。使用 Mage_Core_Model_Resource_Setup 或让您的设置类从那里扩展。

参见 Mage_Core_Model_Resource_Setup :: setConfigData() Mage_Core_Model_Resource_Setup :: deleteConfigData()

Mage_Core_Model_Resource_Setup :: addConfigField()也可以使用,但我没有在核心中实现。

<?xml version="1.0" ?>
<!-- module config.xml -->
<config>
    <modules>
        <Your_Module>
            <version>1.0</version>
            <!-- upgrade script #s evaluated with version_compare(), FYI -->
        </Your_Module>
    </modules>
    <global>
        <resources>
            <unique_node>
                <setup>
                    <!-- match node under <modules> -->
                    <module>Your_Module</module>
                    <class>Mage_Core_Model_Resource_Setup</class>
                </setup>
            </unique_node>
        </resources>
    </global>
</config>

然后在安装/升级脚本中执行以下操作:

<?php

$installer = $this;
/* @var $installer Mage_Core_Model_Resource_Setup */ //or whatever you configured

$installer->startSetup();

$installer->setConfigData($path, $value, $scope='default', $scopeId=0) //inherit is not implemented

$installer->endSetup();

答案 1 :(得分:5)

你没有提到你所使用的Magento版本。我已经在1.4.1.1上测试了下面的内容并进行了一些更改,因此它是一个运行的示例。

主要区别在于

的变化
Mage::app()->reinitStores();

Mage::app()->getConfig()->reinit();

重新加载配置,同时重新加载缓存。

完成示例:

<?php

require_once 'app' . DIRECTORY_SEPARATOR . 'Mage.php';
Mage::app();

/* Website information */
$website_data = array(
    'name' => 'Website Name',
    'code' => 'website_company',
    'sort_order' => '2',
    'is_active' => 1,
);

/* Save website */
$website = Mage::getModel('core/website');
$website->setData($website_data);
$website->save()->load();

/* Save store */
$storeGroup = Mage::getModel('core/store_group');
$storeGroup->setData(
        array(
            'root_category_id' => '3',
            'website_id' => $website->getId(),
            'name' => 'Store',
        )
);
$storeGroup->save()->load();

$store = Mage::getModel('core/store');
$store->setData(
        array(
            'website_id' => $website->getId(),
            'name' => $storeGroup->getName(),
            'code' => 'store_' . $website->load()->getId(),
            'group_id' => $storeGroup->getGroupId(),
            'is_active' => 1,
        )
);
$store->save()->load();

/* Re-init */
Mage::app()->getConfig()->reinit();

/* Config data array example */
$data = array('name' => 'Company 1', 'phone' => '056 22 33 61');

/* Set config values in array */
$groups = array();
foreach ($data as $key => $value) {
    $groups['store_information']['fields'][$key]['value'] = $value;
}

/* Save config values */
$data = Mage::getModel('adminhtml/config_data')
                ->setSection('general')
                ->setWebsite($website->getCode())
                ->setGroups($groups)
                ->save();