//Mage_Eav_Model_Mysql4_Entity_Attribute_Collection
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter(Mage_Catalog_Model_Product::ENTITY);
yapmak gerekir.
Az önce bir hata bulduk, entity_type_id öğesini geçmelisiniz:
$col = Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter(4);
YAPAR
Kod belgeler:
if ($type instanceof Mage_Eav_Model_Entity_Type) {
$additionalTable = $type->getAdditionalAttributeTable();
$id = $type->getId();
} else {
$additionalTable = $this->getResource()->getAdditionalAttributeTable($type);
$id = $type;
}
umarım çalışma çözümü (@Alex comment tarafından güncellendi)
Bunu geçmelisin Mage_Eav_Model_Entity_Type
ki bu işe yarayacak ve kodlanmış olmamalıdır:
$type = Mage::getModel('eav/entity_type')->loadByCode(Mage_Catalog_Model_Product::ENTITY)
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter($type);