mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 09:08:09 +08:00
97 lines
1.8 KiB
PHP
97 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* IDeal payment method.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods;
|
|
|
|
use Automattic\WooCommerce\Blocks\Payments\Integrations\AbstractPaymentMethodType;
|
|
|
|
/**
|
|
* Class IDealPaymentMethod
|
|
*/
|
|
class IDealPaymentMethod extends AbstractPaymentMethodType {
|
|
|
|
/**
|
|
* The URL of this module.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $module_url;
|
|
|
|
/**
|
|
* The assets version.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $version;
|
|
|
|
/**
|
|
* IDeal WC gateway.
|
|
*
|
|
* @var IDealGateway
|
|
*/
|
|
private $gateway;
|
|
|
|
/**
|
|
* IDealPaymentMethod constructor.
|
|
*
|
|
* @param string $module_url The URL of this module.
|
|
* @param string $version The assets version.
|
|
* @param IDealGateway $gateway IDeal WC gateway.
|
|
*/
|
|
public function __construct(
|
|
string $module_url,
|
|
string $version,
|
|
IDealGateway $gateway
|
|
) {
|
|
$this->module_url = $module_url;
|
|
$this->version = $version;
|
|
$this->gateway = $gateway;
|
|
|
|
$this->name = IDealGateway::ID;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function initialize() {}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function is_active() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function get_payment_method_script_handles() {
|
|
wp_register_script(
|
|
'ppcp-ideal-payment-method',
|
|
trailingslashit( $this->module_url ) . 'assets/js/ideal-payment-method.js',
|
|
array(),
|
|
$this->version,
|
|
true
|
|
);
|
|
|
|
return array( 'ppcp-ideal-payment-method' );
|
|
}
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function get_payment_method_data() {
|
|
return array(
|
|
'id' => $this->name,
|
|
'title' => $this->gateway->title,
|
|
'description' => $this->gateway->description,
|
|
'icon' => $this->gateway->icon,
|
|
);
|
|
}
|
|
}
|