73 lines
2.1 KiB
PHP
Executable File
73 lines
2.1 KiB
PHP
Executable File
<?php
|
|
/*
|
|
+--------------------------------------------------------------------------
|
|
| CubeCart 4
|
|
| ========================================
|
|
| CubeCart is a registered trade mark of Devellion Limited
|
|
| Copyright Devellion Limited 2006. All rights reserved.
|
|
| Devellion Limited,
|
|
| 5 Bridge Street,
|
|
| Bishops Stortford,
|
|
| HERTFORDSHIRE.
|
|
| CM23 2JU
|
|
| UNITED KINGDOM
|
|
| http://www.devellion.com
|
|
| UK Private Limited Company No. 5323904
|
|
| ========================================
|
|
| Web: http://www.cubecart.com
|
|
| Email: info (at) cubecart (dot) com
|
|
| License Type: CubeCart is NOT Open Source Software and Limitations Apply
|
|
| Licence Info: http://www.cubecart.com/v4-software-license
|
|
+--------------------------------------------------------------------------
|
|
| button.inc.php
|
|
| ========================================
|
|
| Button PayPal EC
|
|
+--------------------------------------------------------------------------
|
|
*/
|
|
if (!defined('CC_INI_SET')) die("Access Denied");
|
|
class PayPal_Pro {
|
|
|
|
function buildIt($moduleName="", $urlOnly = false) {
|
|
|
|
global $subTotal,$config,$orderSum,$altCheckoutInv;
|
|
|
|
switch(strtolower(LANG_FOLDER)) {
|
|
case "es":
|
|
$locale = "es_ES";
|
|
break;
|
|
case "fr":
|
|
$locale = "fr_FR";
|
|
break;
|
|
case "nl":
|
|
$locale = "nl_NL";
|
|
break;
|
|
case "de":
|
|
$locale = "de_DE";
|
|
break;
|
|
case "it":
|
|
$locale = "it_IT";
|
|
break;
|
|
default:
|
|
$locale = "en_US";
|
|
break;
|
|
}
|
|
|
|
$linkInv = "";
|
|
|
|
if(is_array($altCheckoutInv)) {
|
|
$linkInv .= "&items=".base64_encode(serialize($altCheckoutInv));
|
|
}
|
|
|
|
if($urlOnly==true) {
|
|
$link = "index.php?_g=rm&type=altCheckout&cmd=process&module=PayPal_Pro&ccb=".base64_encode($orderSum['prod_total'].",".$config['defaultCurrency']).$linkInv;
|
|
} else {
|
|
|
|
$link = "<a href='index.php?_g=rm&type=altCheckout&cmd=process&module=PayPal_Pro&ccb=".base64_encode($subTotal.",".$config['defaultCurrency']).$linkInv."' target='_self' /><img src='https://www.paypal.com/".$locale."/i/btn/btn_xpressCheckout.gif' border='0' title='' alt='' /></a>";
|
|
|
|
}
|
|
|
|
return $link;
|
|
|
|
}
|
|
}
|
|
?>
|