magento
コレクション
サーチ…
製品コレクション
$ProductCollection=Mage::getModel('catalog/product')->getCollection();
特定の属性の選択
$ProductCollection->addAttributeToSelect(array('name', 'product_url', 'small_image'));
すべての属性の選択
$ProductCollection->addAttributeToSelect('*');
コレクションにフィルタを追加する
$ProductCollection->addFieldToFilter('is_active',1);
コレクションに商品属性フィルタを追加する
$ProductCollection->addAttributeToFilter('weight', array('gt' => 100));
注文を設定する
$ProductCollection->setOrder('id','ASC');
制限を設定する
$ProductCollection->setPageSize(10);
現在のページを設定する
$ProductCollection->setCurPage(1);
カテゴリ特定の店舗と特定のレベルのコレクション
$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
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow