forked from elplatt/seltzer
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
476 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<?php | ||
|
||
require_once ("paypalfunctions.php"); | ||
// ================================== | ||
// PayPal Express Checkout Module | ||
// ================================== | ||
|
||
//'------------------------------------ | ||
//' The paymentAmount is the total value of | ||
//' the shopping cart, that was set | ||
//' earlier in a session variable | ||
//' by the shopping cart page | ||
//'------------------------------------ | ||
$paymentAmount = $_SESSION["Payment_Amount"]; | ||
|
||
//'------------------------------------ | ||
//' The currencyCodeType and paymentType | ||
//' are set to the selections made on the Integration Assistant | ||
//'------------------------------------ | ||
$currencyCodeType = "GBP"; | ||
$paymentType = "Sale"; | ||
|
||
//'------------------------------------ | ||
//' The returnURL is the location where buyers return to when a | ||
//' payment has been succesfully authorized. | ||
//' | ||
//' This is set to the value entered on the Integration Assistant | ||
//'------------------------------------ | ||
$returnURL = "https://tony314/crm/index.php?q=contact&cid=5&tab=account"; | ||
|
||
//'------------------------------------ | ||
//' The cancelURL is the location buyers are sent to when they hit the | ||
//' cancel button during authorization of payment during the PayPal flow | ||
//' | ||
//' This is set to the value entered on the Integration Assistant | ||
//'------------------------------------ | ||
$cancelURL = "https://tony314/crm/index.php?q=contact&cid=5&tab=account"; | ||
|
||
//'------------------------------------ | ||
//' Calls the SetExpressCheckout API call | ||
//' | ||
//' The CallShortcutExpressCheckout function is defined in the file PayPalFunctions.php, | ||
//' it is included at the top of this file. | ||
//'------------------------------------------------- | ||
$resArray = CallShortcutExpressCheckout ($paymentAmount, $currencyCodeType, $paymentType, $returnURL, $cancelURL); | ||
$ack = strtoupper($resArray["ACK"]); | ||
if($ack=="SUCCESS" || $ack=="SUCCESSWITHWARNING") | ||
{ | ||
RedirectToPayPal ( $resArray["TOKEN"] ); | ||
} | ||
else | ||
{ | ||
//Display a user friendly Error on the page using any of the following error information returned by PayPal | ||
$ErrorCode = urldecode($resArray["L_ERRORCODE0"]); | ||
$ErrorShortMsg = urldecode($resArray["L_SHORTMESSAGE0"]); | ||
$ErrorLongMsg = urldecode($resArray["L_LONGMESSAGE0"]); | ||
$ErrorSeverityCode = urldecode($resArray["L_SEVERITYCODE0"]); | ||
|
||
echo "SetExpressCheckout API call failed. "; | ||
echo "Detailed Error Message: " . $ErrorLongMsg; | ||
echo "Short Error Message: " . $ErrorShortMsg; | ||
echo "Error Code: " . $ErrorCode; | ||
echo "Error Severity Code: " . $ErrorSeverityCode; | ||
} | ||
?> |
Oops, something went wrong.