magento
collecties
Zoeken…
Product collectie
$productCollection = Mage::getModel('catalog/product')->getCollection();
Het specifieke kenmerk selecteren
$productCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));
Alle attributen selecteren
$productCollection->addAttributeToSelect('*');
Filter toevoegen op verzameling
$productCollection->addFieldToFilter('is_active', 1);
Bestelling instellen
$productCollection->setOrder('id', 'ASC');
Limiet instellen
$productCollection->setPageSize(10);
Stel huidige pagina in
$productCollection->setCurPage($page);
Modified text is an extract of the original Stack Overflow Documentation
Licentie onder CC BY-SA 3.0
Niet aangesloten bij Stack Overflow