Warning: You are browsing the documentation from version 4 to 10 of Pimcore.
Please visit https://pimcore.com/docs/platform/ for the latest versions of Pimcore.
Version:
OGone
- Documentation
- Sandbox / on request
Configuration
Inside your ecommerce.yml configuration, active the ogone provider and select either sandbox or live environment.
Implementation
Somewhere in your checkout controller you will need to create the payment configuration for the initPayment()
method of the provider:
<?php
$url = 'https://'. $_SERVER["HTTP_HOST"] . "/en/checkout/confirm?state=";
$paymentConfig = [
'language' => "en",
'orderIdent' => $paymentInfo->getInternalPaymentId(),
'customerStatement' => $paymentMessage,
'successUrl' => "https://my-server-name.com/shop/payment/confirm?provider=ogone&state=success",
'cancelUrl' => "https://my-server-name.com/shop/payment/confirm?provider=ogone&state=cancel",
'errorUrl' => "https://my-server-name.com/shop/payment/confirm?provider=ogone&state=error",
'paymentInfo' => $order->getPaymentInfo()->getItems()[0]
];
You must configure the callback URLs within the OGone backend so that these are called server-by-server.
You can pass additional parameters in the configuration based on the OGone documentation. For instance the color and the appearance of th Ogone UI can be controlled, and additional customer data may be passed.