任何人都可以用外行的方式告诉我下面代码的含义是什么。
$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 :(得分:3)
在当前商店的目录中显示所有产品,其中'facewhatever'属性设置为1。检索到的字段是自解释的,可能是您的Facewhatever商店视图所需的字段。
此信息将作为对象集合进行检索,我假设其余代码会迭代以发布到Facewhatever。