2012-04-30 84 views

回答

2

'preload'是什麼意思? 您可以輕鬆地只是調用loadByCode加載任何屬性:

$attribute = Mage::getModel('eav/entity_attribute')->loadByCode('catalog_product', '%attribute_code%') 

或者,你可以加載所有屬性使用集合:

$entityType   = Mage::getModel('eav/entity_type')->loadByCode('catalog_product'); 
$attributeCollection = Mage::getModel('eav/entity_attribute')->getCollection()->setEntityTypeFilter($entityType); 

有在Magento 8種實體類型:

  1. 顧客
  2. customer_address
  3. catalog_category
  4. catalog_product
  5. 爲了
  6. 發票
  7. 貸記通知單
  8. 裝運
+0

有幾個實體類型比 - 裁判'eav_entity_type'表。 – benmarks

相關問題