2012-04-30 20 views

答えて

2

「プリロード」とはどういう意味ですか?あなただけで簡単にloadByCodeを呼び出すことにより、任意の属性を読み込むことができ :

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

それとも、あなたは、コレクションを使用してすべての属性をロードすることができます

    :Magentoの内8つのエンティティタイプがある

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

  1. お客様
  2. customer_address
  3. REF `eav_entity_type`テーブル -
  4. catalog_category
  5. catalog_product
  6. ため
  7. 請求書
  8. creditmemo
  9. 出荷
+0

よりもさらにいくつかのエンティティの種類があります。 – benmarks

関連する問題