//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);
DOES
Код это документация:
if ($type instanceof Mage_Eav_Model_Entity_Type) {
$additionalTable = $type->getAdditionalAttributeTable();
$id = $type->getId();
} else {
$additionalTable = $this->getResource()->getAdditionalAttributeTable($type);
$id = $type;
}
надеюсь рабочее решение (обновлено @Alex comment)
Вы должны передать, Mage_Eav_Model_Entity_Type
так что это должно работать и не жестко закодировано:
$type = Mage::getModel('eav/entity_type')->loadByCode(Mage_Catalog_Model_Product::ENTITY)
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter($type);