magento
samlingar
Sök…
Produktkollektion
$productCollection = Mage::getModel('catalog/product')->getCollection();
Välj det specifika attributet
$productCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));
Välja alla attribut
$productCollection->addAttributeToSelect('*');
Lägg till filter i samlingen
$productCollection->addFieldToFilter('is_active', 1);
Sätt order
$productCollection->setOrder('id', 'ASC');
Ställ in gränsen
$productCollection->setPageSize(10);
Ställ in aktuell sida
$productCollection->setCurPage($page);
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow