1: <?php
2:
3: /**
4: * ShipSync
5: *
6: * @category IllApps
7: * @package IllApps_Shipsync
8: * @copyright Copyright (c) 2014 EcoMATICS, Inc. DBA IllApps (http://www.illapps.com)
9: * @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
10: */
11:
12: /**
13: * IllApps_Shipsync_Model_Shipping_Carrier_Fedex_Source_Unitofmeasure
14: */
15: class IllApps_Shipsync_Model_Shipping_Carrier_Fedex_Source_Unitofmeasure
16: {
17:
18: /**
19: * toOptionArray
20: *
21: * @return array
22: */
23:
24: public function toOptionArray()
25: {
26: return array(
27: 'LB' => Mage::helper('usa')->__('Pounds'),
28: 'KG' => Mage::helper('usa')->__('Kilograms'),
29: 'G' => Mage::helper('usa')->__('Grams')
30: );
31: }
32: }
33: