Файловый менеджер - Редактировать - /var/www/html/paymentexpress.zip
Ðазад
PK ! ��8� � src/PxPostGateway.phpnu �[��� <?php namespace Omnipay\PaymentExpress; use Omnipay\Common\AbstractGateway; use Omnipay\PaymentExpress\Message\PxPostAuthorizeRequest; use Omnipay\PaymentExpress\Message\PxPostCaptureRequest; use Omnipay\PaymentExpress\Message\PxPostPurchaseRequest; use Omnipay\PaymentExpress\Message\PxPostRefundRequest; /** * DPS PaymentExpress PxPost Gateway */ class PxPostGateway extends AbstractGateway { public function getName() { return 'PaymentExpress PxPost'; } public function getDefaultParameters() { return array( 'username' => '', 'password' => '', ); } public function getUsername() { return $this->getParameter('username'); } public function setUsername($value) { return $this->setParameter('username', $value); } public function getPassword() { return $this->getParameter('password'); } public function setPassword($value) { return $this->setParameter('password', $value); } public function authorize(array $parameters = array()) { return $this->createRequest('\Omnipay\PaymentExpress\Message\PxPostAuthorizeRequest', $parameters); } public function capture(array $parameters = array()) { return $this->createRequest('\Omnipay\PaymentExpress\Message\PxPostCaptureRequest', $parameters); } public function purchase(array $parameters = array()) { return $this->createRequest('\Omnipay\PaymentExpress\Message\PxPostPurchaseRequest', $parameters); } public function refund(array $parameters = array()) { return $this->createRequest('\Omnipay\PaymentExpress\Message\PxPostRefundRequest', $parameters); } public function createCard(array $parameters = array()) { return $this->createRequest('\Omnipay\PaymentExpress\Message\PxPostCreateCardRequest', $parameters); } } PK ! gݖ�� � &