Skip to content

Commit

Permalink
Merge pull request #30 from payrexx/hotfix/PP-12544
Browse files Browse the repository at this point in the history
hotfix/PP-12544: Prestashop Payment Method Name Change
  • Loading branch information
vinothss4u authored Aug 27, 2024
2 parents dcc08df + 8f4b69c commit b923a1f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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.0]]></version>
<version><![CDATA[1.5.1]]></version>
<description><![CDATA[Accept payments using Payrexx Payment gateway]]></description>
<author><![CDATA[Payrexx]]></author>
<tab><![CDATA[payments_gateways]]></tab>
Expand Down
4 changes: 2 additions & 2 deletions 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.0';
$this->version = '1.5.1';
$this->author = 'Payrexx';
$this->is_eu_compatible = 1;
$this->ps_versions_compliancy = ['min' => '1.7'];
Expand Down Expand Up @@ -409,7 +409,7 @@ public function allowedPaymentMethodToPay(array $paymentMethod): bool
*/
public function loadTranslationsInUi()
{
$this->l('Payrexx payment method title');
$this->l('Payrexx Payment Methods');
$this->l('Masterpass');
$this->l('Mastercard');
$this->l('Visa');
Expand Down
2 changes: 1 addition & 1 deletion payrexx/src/Config/PayrexxConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public static function getConfigKeys(): array
public static function getPaymentMethods(): array
{
return [
'payrexx' => 'Payrexx payment method title',
'payrexx' => 'Payrexx Payment Methods',
'masterpass' => 'Masterpass',
'mastercard' => 'Mastercard',
'visa' => 'Visa',
Expand Down

0 comments on commit b923a1f

Please sign in to comment.