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_GoogleCheckout_Block_Link extends Mage_Core_Block_Template
00035 {
00036 public function getImageStyle()
00037 {
00038 $s = Mage::getStoreConfig('google/checkout/checkout_image');
00039 if (!$s) {
00040 $s = '180/46/trans';
00041 }
00042 return explode('/', $s);
00043 }
00044
00045 public function getImageUrl()
00046 {
00047 $url = 'https://checkout.google.com/buttons/checkout.gif';
00048 $url .= '?merchant_id='.Mage::getStoreConfig('google/checkout/merchant_id');
00049 $v = $this->getImageStyle();
00050 $url .= '&w='.$v[0].'&h='.$v[1].'&style='.$v[2];
00051 $url .= '&variant='.($this->getIsDisabled() ? 'disabled' : 'text');
00052 $url .= '&loc='.Mage::getStoreConfig('google/checkout/locale');
00053 return $url;
00054 }
00055
00056 public function getCheckoutUrl()
00057 {
00058 return $this->getUrl('googlecheckout/redirect/checkout');
00059 }
00060
00061 public function getIsActiveAanalytics()
00062 {
00063 return Mage::getStoreConfig('google/analytics/active');
00064 }
00065
00066 public function getImageWidth()
00067 {
00068 $v = $this->getImageStyle();
00069 return $v[0];
00070 }
00071
00072 public function getImageHeight()
00073 {
00074 $v = $this->getImageStyle();
00075 return $v[1];
00076 }
00077
00078 public function _toHtml()
00079 {
00080 if (!Mage::getSingleton('checkout/session')->getQuote()->validateMinimumAmount()) {
00081 return '';
00082 }
00083 if (Mage::getStoreConfigFlag('google/checkout/active')) {
00084 return parent::_toHtml();
00085 }
00086
00087 return '';
00088 }
00089
00090 public function getIsDisabled()
00091 {
00092 $quote = Mage::getSingleton('checkout/session')->getQuote();
00093
00094 foreach ($quote->getAllVisibleItems() as $item) {
00095
00096 if (!$item->getProduct()->getEnableGooglecheckout()) {
00097 return true;
00098 }
00099 }
00100 return false;
00101 }
00102 }