Public Member Functions | |
getAllOptions () |
Definition at line 34 of file Group.php.
getAllOptions | ( | ) |
Retrieve All options
Implements Mage_Eav_Model_Entity_Attribute_Source_Interface.
Definition at line 36 of file Group.php.
00037 { 00038 if (!$this->_options) { 00039 $this->_options = Mage::getResourceModel('customer/group_collection') 00040 ->setRealGroupsFilter() 00041 ->load() 00042 ->toOptionArray() 00043 ; 00044 } 00045 return $this->_options; 00046 }