00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 class Mage_CatalogIndex_Model_Attribute extends Mage_Core_Model_Abstract
00034 {
00035 protected function _construct()
00036 {
00037 $this->_init('catalogindex/attribute');
00038 $this->_getResource()->setStoreId(Mage::app()->getStore()->getId());
00039 }
00040
00041 public function getFilteredEntities($attribute, $filter, $entityFilter)
00042 {
00043 return $this->_getResource()->getFilteredEntities($attribute, $filter, $entityFilter);
00044 }
00045
00046 public function getCount($attribute, $entityFilter)
00047 {
00048 return $this->_getResource()->getCount($attribute, $entityFilter);
00049 }
00050
00051 public function checkCount($optionIds, $attribute, $entityFilter)
00052 {
00053 return $this->_getResource()->checkCount($optionIds, $attribute, $entityFilter);
00054 }
00055
00056 public function applyFilterToCollection($collection, $attribute, $value)
00057 {
00058 $this->_getResource()->applyFilterToCollection($collection, $attribute, $value);
00059 return $this;
00060 }
00061 }