//Mage_Eav_Model_Mysql4_Entity_Attribute_Collection
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter(Mage_Catalog_Model_Product::ENTITY);
harus dilakukan.
Kami baru saja menemukan bug, Anda harus meneruskan entitas_type_id:
$col = Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter(4);
APAKAH
Kode tersebut adalah dokumentasi:
if ($type instanceof Mage_Eav_Model_Entity_Type) {
$additionalTable = $type->getAdditionalAttributeTable();
$id = $type->getId();
} else {
$additionalTable = $this->getResource()->getAdditionalAttributeTable($type);
$id = $type;
}
semoga solusi bekerja (diperbarui oleh @Alex comment)
Anda harus lulus Mage_Eav_Model_Entity_Type
jadi ini harus bekerja dan tidak hardcode:
$type = Mage::getModel('eav/entity_type')->loadByCode(Mage_Catalog_Model_Product::ENTITY)
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter($type);