gpt4 book ai didi

php - Magento:如何将制造国属性复制到另一个属性中?

转载 作者:可可西里 更新时间:2023-11-01 00:48:22 25 4
gpt4 key购买 nike

我只是想知道,有什么方法可以将 Magento 内置的 country_of_manufacturer 的值(基本上是所有国家/地区的列表)复制到新属性中吗?

我知道这是一个有趣的问题,而我们可以只使用内置属性。但我需要将该值用于另一个属性(即 country_region)。那我该怎么做呢?

附言请不要投票,因为我已经搜索了很多但找不到答案。也不确定我还能怎么做。 :/

最佳答案

您要做的是将新属性配置为使用 catalog/product_attribute_source_countryofmanufacture 源模型(参见 Mage_Catalog_Model_Product_Attribute_Source_Countryofmanufacture::getAllOptions() [link]。此模型从目录表中获取选项。

理想情况下,您可以在模块的升级脚本中创建和配置此属性。您需要必要的配置才能为您的模块运行升级脚本,然后您可以将其用作脚本的基础:

$installer = Mage::getResourceModel('catalog/setup','default_setup');
/* @var $installer Mage_Catalog_Model_Resource_Setup */

$installer->startSetup();

$installer->addAttribute(
Mage_Catalog_Model_Product::ENTITY,
'your_attr_code',
array(
'type' => 'varchar',
'input' => 'select',
'source' => 'catalog/product_attribute_source_countryofmanufacture',
// other settings as desired...
)
);

$installer->endSetup();

您还可以在管理中创建一个“下拉”属性,在 eav_attribute 表中找到它,然后编辑它的 source_model 列以获得列出的源模型。对于适当的设置,要么运行此 sql 语句...

SELECT * FROM eav_attribute WHERE attribute_code = 'country_of_manufacture';`

...或look at how the country_of_manufacture attribute is created in the first place.

关于php - Magento:如何将制造国属性复制到另一个属性中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12949172/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com