_paymentSpecificInformation) { return $this->_paymentSpecificInformation; } $info = $this->getInfo(); $transport = new Varien_Object(array(Mage::helper('payment')->__('Name on the Card') => $info->getCcOwner(),)); $transport = parent::_prepareSpecificInformation($transport); if (!$this->getIsSecureMode()) { $transport->addData(array( Mage::helper('payment')->__('Expiration Date') => $this->_formatCardDate( $info->getCcExpYear(), $this->getCcExpMonth() ), Mage::helper('payment')->__('Credit Card Number') => $info->getCcNumber(), )); } return $transport; } }