//Mage_Eav_Model_Mysql4_Entity_Attribute_Collection
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter(Mage_Catalog_Model_Product::ENTITY);
करना चाहिए।
हमें बस एक बग मिला है, आपको पास करना होगा Unit_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
इसलिए यह काम करना चाहिए और हार्डकोड नहीं है:
$type = Mage::getModel('eav/entity_type')->loadByCode(Mage_Catalog_Model_Product::ENTITY)
Mage::getResourceModel('eav/entity_attribute_collection')->setEntityTypeFilter($type);