Add wc payment gateway boilerplate

This commit is contained in:
Emili Castells Guasch 2024-08-08 14:24:47 +02:00
parent 7b22040710
commit a65d4fb2dc
3 changed files with 81 additions and 1 deletions

View file

@ -9,6 +9,10 @@ declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods;
return array(
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
return array(
'ppcp-local-apms.bancontact.wc-gateway' => static function ( ContainerInterface $container ): BancontactGateway {
return new BancontactGateway();
},
);

View file

@ -0,0 +1,72 @@
<?php
/**
* The Bancontact payment gateway.
*
* @package WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods
*/
declare(strict_types=1);
namespace WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods;
use WC_Payment_Gateway;
class BancontactGateway extends WC_Payment_Gateway {
const ID = 'ppcp-bancontact';
public function __construct() {
$this->id = self::ID;
$this->method_title = __( 'Bancontact', 'woocommerce-paypal-payments' );
$this->method_description = __( 'Bancontact', 'woocommerce-paypal-payments' );
$this->title = $this->get_option( 'title', __( 'Bancontact', 'woocommerce-paypal-payments' ) );
$this->description = $this->get_option( 'description', '' );
$this->icon = esc_url( 'https://www.paypalobjects.com/images/checkout/alternative_payments/paypal_bancontact_color.svg' );
$this->init_form_fields();
$this->init_settings();
add_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );
}
public function init_form_fields() {
$this->form_fields = array(
'enabled' => array(
'title' => __( 'Enable/Disable', 'woocommerce-paypal-payments' ),
'type' => 'checkbox',
'label' => __( 'Bancontact', 'woocommerce-paypal-payments' ),
'default' => 'no',
'desc_tip' => true,
'description' => __( 'Enable/Disable Bancontact payment gateway.', 'woocommerce-paypal-payments' ),
),
'title' => array(
'title' => __( 'Title', 'woocommerce-paypal-payments' ),
'type' => 'text',
'default' => $this->title,
'desc_tip' => true,
'description' => __( 'This controls the title which the user sees during checkout.', 'woocommerce-paypal-payments' ),
),
'description' => array(
'title' => __( 'Description', 'woocommerce-paypal-payments' ),
'type' => 'text',
'default' => $this->description,
'desc_tip' => true,
'description' => __( 'This controls the description which the user sees during checkout.', 'woocommerce-paypal-payments' ),
),
);
}
public function process_payment( $order_id ) {
$wc_order = wc_get_order( $order_id );
return array(
'result' => 'success',
'redirect' => $this->get_return_url( $wc_order ),
);
}
}

View file

@ -30,6 +30,10 @@ class LocalAlternativePaymentMethodsModule implements ModuleInterface {
}
public function run(ContainerInterface $c): void {
add_filter('woocommerce_payment_gateways', function ($methods) use ($c) {
$methods[] = $c->get('ppcp-local-apms.bancontact.wc-gateway');
return $methods;
});
}
}