*/ class Mage_Sales_Block_Payment_Info_Billing_Agreement extends Mage_Payment_Block_Info { /** * Add reference id to payment method information * * @param Varien_Object|array $transport */ protected function _prepareSpecificInformation($transport = null) { if (null !== $this->_paymentSpecificInformation) { return $this->_paymentSpecificInformation; } $info = $this->getInfo(); $referenceID = $info->getAdditionalInformation( Mage_Sales_Model_Payment_Method_Billing_AgreementAbstract::PAYMENT_INFO_REFERENCE_ID ); $transport = new Varien_Object(array($this->__('Reference ID') => $referenceID,)); $transport = parent::_prepareSpecificInformation($transport); return $transport; } }