Public Member Functions | |
getAllOptions () |
Definition at line 34 of file Store.php.
getAllOptions | ( | ) |
Retrieve All options
Implements Mage_Eav_Model_Entity_Attribute_Source_Interface.
Definition at line 36 of file Store.php.
00037 { 00038 if (is_null($this->_options)) { 00039 $this->_options = Mage::getResourceModel('core/store_collection')->load()->toOptionArray(); 00040 } 00041 return $this->_options; 00042 }