for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Direct Debit mandate via iDEAL gateway
*
* @author Pronamic <[email protected]>
* @copyright 2005-2022 Pronamic
* @license GPL-3.0-or-later
* @package Pronamic\WordPress\Pay\Extensions\MemberPress
*/
namespace Pronamic\WordPress\Pay\Extensions\MemberPress\Gateways;
use Pronamic\WordPress\Pay\Core\PaymentMethods;
use Pronamic\WordPress\Pay\Plugin;
* WordPress pay MemberPress Direct Debit mandate via iDEAL gateway
* @author Reüel van der Steege
* @version 3.1.0
* @since 2.0.0
class DirectDebitIDealGateway extends Gateway {
* Constructs and initialize credit card gateway.
public function __construct() {
parent::__construct( 'MeprDirectDebitIDealGateway', PaymentMethods::DIRECT_DEBIT_IDEAL );
// Capabilities.
$this->capabilities = array(
capabilities
'process-payments',
'create-subscriptions',
'cancel-subscriptions',
'update-subscriptions',
'subscription-trial-payment',
);
}