Public Member Functions | |
toOptionArray ($isMultiselect) | |
Protected Attributes | |
$_options |
Definition at line 27 of file All.php.
toOptionArray | ( | $ | isMultiselect | ) |
Definition at line 31 of file All.php.
00032 { 00033 if (!$this->_options) { 00034 $this->_options = Mage::app()->getLocale()->getOptionAllCurrencies(); 00035 } 00036 $options = $this->_options; 00037 if(!$isMultiselect){ 00038 array_unshift($options, array('value'=>'', 'label'=>'')); 00039 } 00040 00041 return $options; 00042 }