我在“管理选项”标签中尝试创建新选项时遇到问题。创建属性时,我知道如何在数据库中正确保存数据。我正在用我的模块替换Mage_Adminhtml_Block_Catalog_Product_Attribute_Edit_Tab_Options
来创建自定义字段。
我的模块:
config.xml中
<config>
<blocks>
<adminhtml>
<rewrite>
<catalog_product_attribute_edit_tabs>Ceicom_Swatches_Block_Adminhtml_Tabs</catalog_product_attribute_edit_tabs>
<catalog_product_attribute_edit_tab_options>Ceicom_Swatches_Block_Adminhtml_Options</catalog_product_attribute_edit_tab_options>
</rewrite>
</adminhtml>
</blocks>
</config>
Ceicom /色板/砌块/ Adminhtml / Options.php
class Ceicom_Swatches_Block_Adminhtml_Options extends Mage_Adminhtml_Block_Catalog_Product_Attribute_Edit_Tab_Options
{
public function __construct()
{
parent::__construct();
$this->setTemplate('ceicom/attribute/options.phtml');
}
}
放置在自定义字段中的Phtml文件中的:
显然,这需要在表eav_attribute_option
中添加新列。例如]:field_1
,field_2
。
要保存我需要重写的其他字段:Mage_Eav_Model_Resource_Entity_Attribute::_saveOption()
。
有关如何在不更改CORE的情况下执行此操作的任何提示,就像我上面使用rewrite
所做的那样,以及如何加载数据库以获取输入以编辑属性?
答案 0 :(得分:7)
这是一种可行的解决方法:
在开始时我试图覆盖eav类Mage_Eav_Model_Resource_Entity_Attribute,但我没有工作。在仔细查看代码之后,我发现_saveOption方法是由另一个扩展Mage_Eav_Model_Resource_Entity_Attribute的类调用的。因此,如果您使用自定义类重写Mage_Eav_Model_Resource_Entity_Attribute,则在保存选项过程中不会产生任何影响。我还意识到还有另外一个扩展Mage_Eav_Model_Resource_Entity_Attribute的链接
那句话是:
为了能够覆盖属性选项保存过程中的方法,您必须:
1)创建了一个扩展Mage_Eav_Model_Resource_Entity_Attribute并覆盖方法的类
class My_Module_Model_Eav_Resource_Entity_Attribute extends Mage_Eav_Model_Resource_Entity_Attribute{
protected function _saveOption(Mage_Core_Model_Abstract $object){
//your custom logic here
}
}
不要覆盖模块配置中的Mage_Eav_Model_Resource_Entity_Attribute,上面的类将作为主目标类Mage_Catalog_Model_Resource_Attribute的父级,这是参与保存过程的类。
2)在模块配置中覆盖Mage_Catalog_Model_Resource_Attribute类,其中包含一个新类,该类将扩展您之前创建的类My_Module_Model_Eav_Resource_Entity_Attribute
您的配置将如下所示
<global>
<models>
<!-- Overrides Mage_Catalog_Model_Resource_Attribute -->
<catalog_resource>
<rewrite>
<attribute>My_Module_Model_Catalog_Resource_Attribute</attribute>
</rewrite>
</catalog_resource>
</models>
<!-- The rest of global config section -->
</global>
现在,您将看到在保存属性时正在执行的自定义__saveOption方法。