/ Published in: Other
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
<?php $entityTypeId = Mage::getModel('eav/entity')->setType('catalog_product')->getTypeId(); $attributeSet = Mage::getResourceModel('eav/entity_attribute_set_collection')->setEntityTypeFilter($entityTypeId)->addFilter('attribute_set_name', 'Quantity'); echo "<pre>"; var_dump($attributeSet->getData()); echo "</pre>"; ?>