Initial commit
This commit is contained in:
33
production/modules/altCheckout/PayPal_Pro/process.inc.php
Normal file
33
production/modules/altCheckout/PayPal_Pro/process.inc.php
Normal file
@@ -0,0 +1,33 @@
|
||||
<?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/site/faq/license.php
|
||||
+--------------------------------------------------------------------------
|
||||
| process.inc.php
|
||||
| ========================================
|
||||
| Process PayPal Express Checkout
|
||||
+--------------------------------------------------------------------------
|
||||
*/
|
||||
if($_GET['payment']==1) {
|
||||
$orderSum = $order->getOrderSum($_GET['cart_order_id']);
|
||||
include("modules".CC_DS."altCheckout".CC_DS."PayPal_Pro".CC_DS."wpp-".$module['mode'].CC_DS."DoExpressCheckoutPayment.php");
|
||||
} else {
|
||||
include("modules".CC_DS."altCheckout".CC_DS."PayPal_Pro".CC_DS."wpp-".$module['mode'].CC_DS."ReviewOrder.php");
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user