Public Member Functions | |
getCheckoutUrl () | |
getImageUrl () | |
_toHtml () |
Definition at line 34 of file Shortcut.php.
_toHtml | ( | ) |
Render block HTML
Reimplemented from Mage_Core_Block_Template.
Definition at line 51 of file Shortcut.php.
00052 { 00053 if (Mage::getStoreConfigFlag('payment/paypaluk_express/active') 00054 && Mage::getSingleton('checkout/session')->getQuote()->validateMinimumAmount()) { 00055 return parent::_toHtml(); 00056 } 00057 00058 return ''; 00059 }
getCheckoutUrl | ( | ) |
getImageUrl | ( | ) |
Definition at line 41 of file Shortcut.php.
00042 { 00043 $locale = Mage::app()->getLocale()->getLocaleCode(); 00044 if (strpos('en_GB', $locale)===false) { 00045 $locale = 'en_US'; 00046 } 00047 00048 return 'https://www.paypal.com/'.$locale.'/i/btn/btn_xpressCheckout.gif'; 00049 }