Skip to content

Commit

Permalink
Merge pull request #34 from payrexx/task/PP-13446
Browse files Browse the repository at this point in the history
task/PP-13446: Add Payment Method Pay-By-Bank in Prestashop
  • Loading branch information
vinothss4u authored Nov 28, 2024
2 parents 8fe21cc + eaa25ba commit f269240
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 2 deletions.
2 changes: 1 addition & 1 deletion payrexx/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<module>
<name>payrexx</name>
<displayName><![CDATA[Payrexx]]></displayName>
<version><![CDATA[1.5.3]]></version>
<version><![CDATA[1.5.4]]></version>
<description><![CDATA[Accept payments using Payrexx Payment gateway]]></description>
<author><![CDATA[Payrexx]]></author>
<tab><![CDATA[payments_gateways]]></tab>
Expand Down
3 changes: 2 additions & 1 deletion payrexx/payrexx.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public function __construct()
$this->name = 'payrexx';
$this->tab = 'payments_gateways';
$this->module_key = '0c4dbfccbd85dd948fd9a13d5a4add90';
$this->version = '1.5.3';
$this->version = '1.5.4';
$this->author = 'Payrexx';
$this->is_eu_compatible = 1;
$this->ps_versions_compliancy = ['min' => '1.7'];
Expand Down Expand Up @@ -449,5 +449,6 @@ public function loadTranslationsInUi()
$this->l('Purchase on Invoice');
$this->l('Klarna');
$this->l('Samsung Pay');
$this->l('Pay by Bank');
}
}
1 change: 1 addition & 0 deletions payrexx/src/Config/PayrexxConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ public static function getPaymentMethods(): array
'bob-invoice' => 'Bob Invoice',
'bank-transfer' => 'Purchase on Invoice',
'samsung-pay' => 'Samsung Pay',
'pay-by-bank' => 'Pay by Bank',
];
}

Expand Down
16 changes: 16 additions & 0 deletions payrexx/upgrade/Upgrade-1.5.4.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<?php
/**
* Payrexx Payment Gateway - upgrade the module
*
* @author Payrexx <integration@payrexx.com>
* @copyright 2024 Payrexx
* @license MIT License
*/
if (!defined('_PS_VERSION_')) {
exit;
}

function upgrade_module_1_5_4($module)
{
return include _PS_MODULE_DIR_ . 'payrexx/sql/install.php';
}
7 changes: 7 additions & 0 deletions payrexx/views/img/cardicons/card_pay_by_bank.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f269240

Please sign in to comment.