-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
58e3463
commit 977683c
Showing
10 changed files
with
77 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<?php | ||
/** | ||
* PayMoreThanFourGateway. | ||
* | ||
* @since 5.0.0 | ||
* | ||
* @package Alma_Gateway_For_Woocommerce | ||
* @subpackage Alma_Gateway_For_Woocommerce//includes/Gateways/Standard | ||
* @namespace Alma\Woocommerce\Gateways\StandardGateway | ||
*/ | ||
|
||
namespace Alma\Woocommerce\Gateways\Inpage; | ||
|
||
if ( ! defined( 'ABSPATH' ) ) { | ||
exit; | ||
} | ||
|
||
use Alma\Woocommerce\Gateways\AlmaPaymentGateway; | ||
use Alma\Woocommerce\Helpers\ConstantsHelper; | ||
use Alma\Woocommerce\Traits\InPageGatewayTrait; | ||
|
||
/** | ||
* PayMoreThanFourGateway | ||
*/ | ||
class PayMoreThanFourGateway extends AlmaPaymentGateway { | ||
|
||
use InPageGatewayTrait; | ||
/** | ||
* Get the gateway id. | ||
* | ||
* @return string | ||
*/ | ||
public function get_gateway_id() { | ||
return ConstantsHelper::GATEWAY_ID_IN_PAGE_MORE_THAN_FOUR; | ||
} | ||
|
||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters