Public Member Functions | |
getCarrierInstance () | |
Static Protected Attributes | |
static | $_instances |
Definition at line 28 of file Abstract.php.
getCarrierInstance | ( | ) |
Definition at line 32 of file Abstract.php.
00033 { 00034 $code = $this->getCarrier(); 00035 if (!isset(self::$_instances[$code])) { 00036 self::$_instances[$code] = Mage::getModel('shipping/config')->getCarrierInstance($code); 00037 } 00038 return self::$_instances[$code]; 00039 }
$_instances [static, protected] |
Definition at line 30 of file Abstract.php.