//Mage_Eav_Model_Mysql4_Entity_Attribute_Collection
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter(Mage_Catalog_Model_Product::ENTITY);
ควรทำ.
เราเพิ่งพบข้อผิดพลาดคุณต้องผ่าน entity_type_id:
$col = Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter(4);
ทำ
รหัสคือเอกสาร:
if ($type instanceof Mage_Eav_Model_Entity_Type) {
$additionalTable = $type->getAdditionalAttributeTable();
$id = $type->getId();
} else {
$additionalTable = $this->getResource()->getAdditionalAttributeTable($type);
$id = $type;
}
หวังว่าโซลูชันการทำงาน (อัปเดตโดยความคิดเห็น @Alex)
คุณต้องผ่านMage_Eav_Model_Entity_Type
เพื่อให้สิ่งนี้ทำงานได้และไม่ hardcoded:
$type = Mage::getModel('eav/entity_type')->loadByCode(Mage_Catalog_Model_Product::ENTITY)
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter($type);