有人找到了覆盖eav_resource的方法吗?特别是
Mage_Eav_Model_Resource_Entity_Attribute
Run Code Online (Sandbox Code Playgroud)
?
谢谢
您可以像任何其他资源模型一样重写eav/entity_attribute资源模型:
<global>
<models>
<eav_resource>
<rewrite>
<entity_attribute>Your_Module_Model_Eav_Resource_Entity_Attribute</entity_attribute>
</rewrite>
</eav_resource>
</models>
</global>
Run Code Online (Sandbox Code Playgroud)
概念证明:
echo get_class(Mage::getResourceModel('eav/entity_attribute'));
Run Code Online (Sandbox Code Playgroud)