00001 <?php
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 class Mage_Checkout_Block_Multishipping_Billing extends Mage_Payment_Block_Form_Container
00035 {
00036
00037
00038
00039 protected function _prepareLayout()
00040 {
00041 if ($headBlock = $this->getLayout()->getBlock('head')) {
00042 $headBlock->setTitle(
00043 Mage::helper('checkout')->__('Billing Information - %s', $headBlock->getDefaultTitle())
00044 );
00045 }
00046
00047 return parent::_prepareLayout();
00048 }
00049
00050
00051
00052
00053
00054
00055 protected function _canUseMethod($method)
00056 {
00057 if (!$method->canUseForMultishipping()) {
00058 return false;
00059 }
00060 return parent::_canUseMethod($method);
00061 }
00062
00063
00064
00065
00066
00067
00068 public function getSelectedMethodCode()
00069 {
00070 if ($method = $this->getQuote()->getPayment()->getMethod()) {
00071 return $method;
00072 }
00073 return false;
00074 }
00075
00076
00077
00078
00079
00080
00081 public function getAddress()
00082 {
00083 $address = $this->getData('address');
00084 if (is_null($address)) {
00085 $address = Mage::getSingleton('checkout/type_multishipping')->getQuote()->getBillingAddress();
00086 $this->setData('address', $address);
00087 }
00088 return $address;
00089 }
00090
00091
00092
00093
00094
00095
00096 public function getQuote()
00097 {
00098 return Mage::getSingleton('checkout/session')->getQuote();
00099 }
00100
00101
00102
00103
00104
00105
00106 public function getSelectAddressUrl()
00107 {
00108 return $this->getUrl('*/multishipping_address/selectBilling');
00109 }
00110
00111
00112
00113
00114
00115
00116 public function getPostActionUrl()
00117 {
00118
00119 return $this->getUrl('*/*/overview');
00120 }
00121
00122
00123
00124
00125
00126
00127 public function getBackUrl()
00128 {
00129 return $this->getUrl('*/*/backtoshipping');
00130 }
00131 }