Public Member Functions | |
getFilteredEntities ($attribute, $filter, $entityFilter) | |
getCount ($attribute, $entityFilter) | |
checkCount ($optionIds, $attribute, $entityFilter) | |
applyFilterToCollection ($collection, $attribute, $value) | |
Protected Member Functions | |
_construct () |
Definition at line 33 of file Attribute.php.
_construct | ( | ) | [protected] |
Enter description here...
Reimplemented from Varien_Object.
Definition at line 35 of file Attribute.php.
00036 { 00037 $this->_init('catalogindex/attribute'); 00038 $this->_getResource()->setStoreId(Mage::app()->getStore()->getId()); 00039 }
applyFilterToCollection | ( | $ | collection, | |
$ | attribute, | |||
$ | value | |||
) |
Definition at line 56 of file Attribute.php.
00057 { 00058 $this->_getResource()->applyFilterToCollection($collection, $attribute, $value); 00059 return $this; 00060 }
checkCount | ( | $ | optionIds, | |
$ | attribute, | |||
$ | entityFilter | |||
) |
Definition at line 51 of file Attribute.php.
00052 { 00053 return $this->_getResource()->checkCount($optionIds, $attribute, $entityFilter); 00054 }
getCount | ( | $ | attribute, | |
$ | entityFilter | |||
) |
Definition at line 46 of file Attribute.php.
00047 { 00048 return $this->_getResource()->getCount($attribute, $entityFilter); 00049 }
getFilteredEntities | ( | $ | attribute, | |
$ | filter, | |||
$ | entityFilter | |||
) |
Definition at line 41 of file Attribute.php.
00042 { 00043 return $this->_getResource()->getFilteredEntities($attribute, $filter, $entityFilter); 00044 }