2011-07-13 139 views
4

任何人都可以請告訴我在外行下面的代碼是什麼意思。Magento瞭解產品收集

$collection = Mage::getResourceModel('catalog/product_collection') 
      ->addAttributeToSelect('name') 
      ->addAttributeToSelect('sku') 
      ->addAttributeToSelect('price') 
      ->addAttributeToSelect('status') 
      ->addAttributeToSelect('short_description') 
      ->addAttributeToSelect('small_image') 
      ->setStoreId($this->getStoreId()) 
      ->addMinimalPrice() 
      ->addFinalPrice() 
      ->addTaxPercents() 
      ->addStoreFilter() 
      ->addAttributeToFilter('is_facebook', 1) 
      ->setVisibility(Mage::getSingleton('catalog/product_visibility')->getVisibleInCatalogIds()); 
     $collection->load(); 
+0

頂部還有一件事。 – Law

+0

$ collection = Mage :: getResourceModel('catalog/product_collection') – Law

回答

3

在當前商店的產品目錄中顯示所有產品的'facewhatever'屬性設置爲1。檢索到的字段是自我解釋的,大概是您Facewhatever商店視圖所需的字段。

這個信息被檢索爲一個對象的集合,我假設你的代碼的其餘部分迭代發佈到Facewhatever。