File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/migs/src/Message/AbstractRequest.php
Back
<?php namespace Omnipay\Migs\Message; /** * GoCardless Abstract Request */ abstract class AbstractRequest extends \Omnipay\Common\Message\AbstractRequest { protected $endpoint = 'https://migs.mastercard.com.au/'; public function getMerchantId() { return $this->getParameter('merchantId'); } public function setMerchantId($value) { return $this->setParameter('merchantId', $value); } public function getMerchantAccessCode() { return $this->getParameter('merchantAccessCode'); } public function setMerchantAccessCode($value) { return $this->setParameter('merchantAccessCode', $value); } public function getSecureHash() { return $this->getParameter('secureHash'); } public function setSecureHash($value) { return $this->setParameter('secureHash', $value); } protected function getBaseData() { $data = array(); $data['vpc_Merchant'] = $this->getMerchantId(); $data['vpc_AccessCode'] = $this->getMerchantAccessCode(); $data['vpc_Version'] = '1'; $data['vpc_Locale'] = 'en'; $data['vpc_Command'] = $this->action; $data['vpc_Amount'] = $this->getAmountInteger(); $data['vpc_MerchTxnRef'] = $this->getTransactionId(); $data['vpc_OrderInfo'] = $this->getDescription(); $data['vpc_ReturnURL'] = $this->getReturnUrl(); return $data; } public function getEndpoint() { return $this->endpoint; } public function calculateHash($data) { ksort($data); $hash = $this->getSecureHash(); foreach ($data as $k => $v) { if (substr($k, 0, 4) === 'vpc_' && $k !== 'vpc_SecureHash') { $hash .= $v; } } return strtoupper(md5($hash)); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.05 |
proxy
|
phpinfo
|
Settings