Suche…


Produkt-Sammlung

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

Auswahl des spezifischen Attributs

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

Alle Attribute auswählen

$productCollection->addAttributeToSelect('*');

Filter für Sammlung hinzufügen

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

Reihenfolge festlegen

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

Limit setzen

$productCollection->setPageSize(10);

Aktuelle Seite einstellen

$productCollection->setCurPage($page);


Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow