Recherche…


Collection de produits

$productCollection = Mage::getModel('catalog/product')->getCollection();

Sélection de l'attribut spécifique

$productCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));

Sélectionner tous les attributs

$productCollection->addAttributeToSelect('*');

Ajouter un filtre dans la collection

$productCollection->addFieldToFilter('is_active', 1);

Set Order

$productCollection->setOrder('id', 'ASC');

Définir la limite

$productCollection->setPageSize(10);

Définir la page actuelle

$productCollection->setCurPage($page);


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow