Public Member Functions | |
getAllOptions () |
Definition at line 34 of file Country.php.
getAllOptions | ( | ) |
Retrieve All options
Implements Mage_Eav_Model_Entity_Attribute_Source_Interface.
Definition at line 36 of file Country.php.
00037 { 00038 if (!$this->_options) { 00039 $this->_options = Mage::getResourceModel('directory/country_collection')->load()->toOptionArray(); 00040 /*$baseUrl = Mage::getBaseUrl(); 00041 foreach ($this->_options as $index=>$option) { 00042 $this->_options[$index]['style'] = 'background-image:url('.$baseUrl.'skins/default/images/icons/flags/'.strtolower($option['title']).'.gif)'; 00043 }*/ 00044 } 00045 return $this->_options; 00046 }