yii-paypal
yii-paypal copied to clipboard
How to display item details
Hello,
Right now i using this module, however i need to display Order Summary in details in paypal.
how this possible with this extension?
please advice,.
Hi,
as specified in paypal/confirm,
$result = Yii::app()->Paypal->GetExpressCheckoutDetails($token);
$paymentResult = Yii::app()->Paypal->DoExpressCheckoutPayment($result);
and also some other defined in components/paypal
$resArrayGetExpressCheckout = GetExpressCheckoutDetails( $token );
I am referring also the pure PHP code from https://demo.paypal.com/us/home
Thanks, Abdul Wadood.