Skip to content

Commit

Permalink
5.4.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
dyd committed Feb 6, 2023
1 parent 4bc39c6 commit 91367ae
Show file tree
Hide file tree
Showing 417 changed files with 2,511 additions and 472 deletions.
Binary file removed .DS_Store
Binary file not shown.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Requirements
------------

* X-Cart 5.4.x (you can get this plugin to work on older 5.2, 5.3 versions simply by changing the __Major Version__ to ```5.2```, ```5.3``` in ```Main.php``` and ```main.yaml```)
* [GenesisPHP v1.20.1](https://github.com/GenesisGateway/genesis_php/releases/tag/1.20.1) - (Integrated in Module)
* [GenesisPHP v1.21.2](https://github.com/GenesisGateway/genesis_php/releases/tag/1.21.2) - (Integrated in Module)
* PCI-certified server in order to use ```E-Comprocessing Direct```

GenesisPHP Requirements
Expand Down Expand Up @@ -99,12 +99,14 @@ Supported Transactions & Payment Methods
* __Neosurf__
* __Neteller__
* __Online Banking__
* __Interac Combined Pay-in (CPI)__
* __OXXO__
* __P24__
* __Pago Facil__
* __PayPal__
* __PaySafeCard__
* __PayU__
* __Pix__
* __POLi__
* __Post Finance__
* __PPRO__
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@
* @copyright 2018 E-Comprocessing Ltd.
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2 (GPL-2.0)
*/
namespace XLite\Module\EComprocessing\Genesis\Controller\Admin;
namespace XLite\Module\Ecomprocessing\Genesis\Controller\Admin;

/**
* @package XLite\Module\EComprocessing\Genesis\Controller\Admin
* @package XLite\Module\Ecomprocessing\Genesis\Controller\Admin
*/
class EComprocessingSettings extends \XLite\Controller\Admin\AAdmin
class EcomprocessingSettings extends \XLite\Controller\Admin\AAdmin
{
/**
* Module Path
*/
const MODULE_NAME = 'EComprocessing_Genesis';
const MODULE_NAME = 'Ecomprocessing_Genesis';

/**
* Controller parameters
Expand All @@ -52,7 +52,7 @@ public function getTitle()
*/
public function getShouldDisplayMessage()
{
return ($this->getPaymentMethod()->getServiceName() == \XLite\Module\EComprocessing\Genesis\Main::EMP_DIRECT);
return ($this->getPaymentMethod()->getServiceName() == \XLite\Module\Ecomprocessing\Genesis\Main::EMP_DIRECT);
}

/**
Expand All @@ -62,7 +62,7 @@ public function getShouldDisplayMessage()
*/
public function getDisplayMessageClass()
{
return \XLite\Module\EComprocessing\Genesis\Main::isStoreOverSecuredConnection()
return \XLite\Module\Ecomprocessing\Genesis\Main::isStoreOverSecuredConnection()
? 'alert alert-warning'
: 'alert alert-danger';
}
Expand All @@ -74,7 +74,7 @@ public function getDisplayMessageClass()
*/
public function getDisplayMessageText()
{
return \XLite\Module\EComprocessing\Genesis\Main::isStoreOverSecuredConnection()
return \XLite\Module\Ecomprocessing\Genesis\Main::isStoreOverSecuredConnection()
? 'HTTPS connection is enabled. You need PCI-DSS certificate in order to use this payment method'
: 'This payment method requires HTTPS connection in order to process payment data! ';
}
Expand All @@ -86,7 +86,7 @@ public function getDisplayMessageText()
*/
public function getAuthorWebSite()
{
return \XLite\Module\EComprocessing\Genesis\Main::getAuthorWebsite();
return \XLite\Module\Ecomprocessing\Genesis\Main::getAuthorWebsite();
}

/**
Expand All @@ -97,7 +97,7 @@ public function getAuthorWebSite()
public function getModelFormClass()
{
return sprintf(
'\XLite\Module\EComprocessing\Genesis\View\Model\%s',
'\XLite\Module\Ecomprocessing\Genesis\View\Model\%s',
$this->getPaymentMethod()->getServiceName()
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License, version 2 (GPL-2.0)
*/

namespace XLite\Module\EComprocessing\Genesis\Controller\Customer;
namespace XLite\Module\Ecomprocessing\Genesis\Controller\Customer;

/**
* Checkout controller
Expand Down
Loading

0 comments on commit 91367ae

Please sign in to comment.