Szukaj…


Kolekcja produktów

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

Wybór konkretnego atrybutu

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

Wybieranie wszystkich atrybutów

$productCollection->addAttributeToSelect('*');

Dodaj filtr do kolekcji

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

Ustaw zamówienie

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

Ustaw limit

$productCollection->setPageSize(10);

Ustaw bieżącą stronę

$productCollection->setCurPage($page);


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow