Note : We assume you followed all steps in basic get it started and your basic configuration same as described there.
Download libraries
Run the following command:
$phpcomposer.pharrequirepayum/jms-payment-bridge
Configure context
By default PayumBundle knows nothing about jms payment bridge. To make payum be aware of it you have to add its factory. Let's suppose you have AcmePaymentBundle. You have to add factory inside its build method:
Attention: You have to changed your_payment_name to something more descriptive and domain related, for example post_a_job_with_paypal.
Not so hard so far, let's continue.
Prepare payment
Now we are ready to prepare the payment. Here we set price, currency, cart items details and so. Please note that you have to set details in the jms plugin specific format.
<?phppublicfunctionprepareAction(Request $request){ $gatewayName ='your_payment_name'; $paymentInstruction =newPaymentInstruction(100,'USD','paypal_express_checkout' ); $paymentInstruction->setState(PaymentInstruction::STATE_VALID); $payment =newPayment($paymentInstruction,100);$this->getDoctrine()->getManager()->persist($paymentInstruction);$this->getDoctrine()->getManager()->persist($payment);$this->getDoctrine()->getManager()->flush(); $captureToken =$this->get('payum.security.token_factory')->createCaptureToken( $gatewayName, $payment,'purchase_done'); $payment->getPaymentInstruction()->getExtendedData()->set('return_url', $captureToken->getTargetUrl()); $payment->getPaymentInstruction()->getExtendedData()->set('cancel_url', $captureToken->getTargetUrl());//the state manipulations is needed for saving changes in extended data. $oldState = $payment->getPaymentInstruction()->getState(); $payment->getPaymentInstruction()->setState(PaymentInstruction::STATE_INVALID);$this->getDoctrine()->getManager()->persist($paymentInstruction);$this->getDoctrine()->getManager()->persist($payment);$this->getDoctrine()->getManager()->flush(); $payment->getPaymentInstruction()->setState($oldState);$this->getDoctrine()->getManager()->persist($paymentInstruction);$this->getDoctrine()->getManager()->flush();return$this->redirect($captureToken->getTargetUrl());}
That's it. After the payment done you will be redirect to purchase_done action. Check bundle's chapter about done action to find out how this done action could look like.
Supporting Payum
Payum is an MIT-licensed open source project with its ongoing development made possible entirely by the support of community and our customers. If you'd like to join them, please consider: