Public Member Functions | |
_construct () | |
setEntityTypeFilter ($typeId) | |
toOptionArray () | |
toOptionHash () |
Definition at line 28 of file Collection.php.
_construct | ( | ) |
Initialization here
Reimplemented from Mage_Core_Model_Mysql4_Collection_Abstract.
Definition at line 30 of file Collection.php.
00031 { 00032 $this->_init('eav/entity_attribute_set'); 00033 }
setEntityTypeFilter | ( | $ | typeId | ) |
Definition at line 35 of file Collection.php.
00036 { 00037 $this->getSelect()->where('main_table.entity_type_id=?', $typeId); 00038 return $this; 00039 }
toOptionArray | ( | ) |
Reimplemented from Varien_Data_Collection.
Definition at line 41 of file Collection.php.
00042 { 00043 return parent::_toOptionArray('attribute_set_id', 'attribute_set_name'); 00044 }
toOptionHash | ( | ) |
Reimplemented from Varien_Data_Collection.
Definition at line 46 of file Collection.php.
00047 { 00048 return parent::_toOptionHash('attribute_set_id', 'attribute_set_name'); 00049 }