Skip to content

Commit

Permalink
Merge pull request #24 from payrexx/task/PP-13449
Browse files Browse the repository at this point in the history
task/PP-13449: Add Payment Method Pay-By-Bank in Gambio
  • Loading branch information
vinothss4u authored Nov 26, 2024
2 parents 8fef6ab + 4dc4085 commit 32af5e3
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 1 deletion.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion GXModules/Payrexx/PayrexxPaymentGateway/composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "payrexx/gambio",
"version": "1.0.15",
"version": "1.0.16",
"require": {
"php": "^7.4 || ^8.0",
"payrexx/payrexx": "^1.8.6"
Expand Down
31 changes: 31 additions & 0 deletions includes/modules/payment/payrexx_pay_by_bank.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php
/**
* Class payrexx_pay_by_bank_ORIGIN
*
* Payment gateway for Payrexx AG.
*
* PHP version 7,8
*
* @category PaymentModule
* @package PayrexxPayemntGateway
* @author Payrexx <[email protected]>
* @copyright 2024 Payrexx
* @license MIT License
* @link https://www.payrexx.com
*/

/**
* Class payrexx_pay_by_bank_ORIGIN
*
* @category PaymentModule
* @package PayrexxPayemntGateway
* @author Payrexx <[email protected]>
* @license MIT License
* @link https://www.payrexx.com
*/
class payrexx_pay_by_bank_ORIGIN extends PayrexxPaymentGatewayBase
{
public $code = 'payrexx_pay_by_bank';
}

MainFactory::load_origin_class('payrexx_pay_by_bank');
5 changes: 5 additions & 0 deletions lang/english/modules/payment/payrexx_pay_by_bank.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

if (!defined('MODULE_PAYMENT_PAYREXX_PAY_BY_BANK_TEXT_TITLE')) {
define('MODULE_PAYMENT_PAYREXX_PAY_BY_BANK_TEXT_TITLE', 'Pay by Bank');
}
5 changes: 5 additions & 0 deletions lang/german/modules/payment/payrexx_pay_by_bank.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

if (!defined('MODULE_PAYMENT_PAYREXX_PAY_BY_BANK_TEXT_TITLE')) {
define('MODULE_PAYMENT_PAYREXX_PAY_BY_BANK_TEXT_TITLE', 'Pay by Bank');
}

0 comments on commit 32af5e3

Please sign in to comment.