Файловый менеджер - Редактировать - /var/www/html/libraries/omnipay/vendor/xown/omnipay-epay/src/Message/DeleteRequest.php
Ðазад
<?php namespace Omnipay\Epay\Message; use Omnipay\Common\Message\ResponseInterface; /** * Epay Refund Request */ class DeleteRequest extends CaptureRequest { protected $endpoint = 'https://ssl.ditonlinebetalingssystem.dk/remote/payment.asmx'; public function getSupportedKeys() { return ['merchantnumber', 'transactionid', 'group']; } public function getData() { $this->validate('merchantnumber', 'transactionid'); $data = array(); foreach($this->getSupportedKeys() as $key) { $value = $this->parameters->get($key); if (!empty($value)) { $data[$key] = $value; } } /** Hack from SOAP description */ $data['pbsresponse'] = -1; $data['epayresponse'] = -1; return $data; } /** * @param mixed $data * @return CaptureResponse */ public function sendData($data) { $client = new \SoapClient($this->endpoint.'?WSDL'); $result = $client->delete($data); return $this->response = new RefundResponse($this, array( 'creditResult' => isset($result->creditResult) ? $result->creditResult : null, 'pbsResponse' => isset($result->pbsresponse) ? $result->pbsresponse : null, 'epayresponse' => $result->epayresponse, )); } /** * Send the request * * @return ResponseInterface */ public function send() { return $this->sendData($this->getData()); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка