Suche…


Produkt-Sammlung

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

Auswahl des spezifischen Attributs

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

Auswahl des All-Attributs

$ProductCollection->addAttributeToSelect('*');

Filter für Sammlung hinzufügen

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

Produktattributfilter zur Sammlung hinzufügen

$ProductCollection->addAttributeToFilter('weight', array('gt' => 100));

Reihenfolge festlegen

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

Limit setzen

$ProductCollection->setPageSize(10);

Aktuelle Seite einstellen

$ProductCollection->setCurPage(1);

Kategoriesammlung eines bestimmten Geschäfts und einer bestimmten Ebene

$rootId     = Mage::app()->getStore($storeId)->getRootCategoryId();
$categories = Mage::getModel('catalog/category')->getCollection()
    ->addAttributeToSelect('*')
    ->addFieldToFilter('path', array('like'=> "1/$rootId/%"))
    ->addAttributeToFilter('level', 2)
    ->addAttributeToFilter('is_active', 1);


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