*/ class Mage_Checkout_Block_Multishipping_Payment_Info extends Mage_Payment_Block_Info_Container { /** * Retrieve payment info model * * @return Mage_Payment_Model_Info */ public function getPaymentInfo() { return Mage::getSingleton('checkout/type_multishipping')->getQuote()->getPayment(); } protected function _toHtml() { $html = ''; if ($block = $this->getChild($this->_getInfoBlockName())) { $html = $block->toHtml(); } return $html; } }