mirror of
https://gh.wpcy.net/https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2026-04-30 04:42:19 +08:00
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Przelewy24 payment method.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods
|
|
*/
|
|
declare (strict_types=1);
|
|
namespace WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods;
|
|
|
|
use Automattic\WooCommerce\Blocks\Payments\Integrations\AbstractPaymentMethodType;
|
|
use WooCommerce\PayPalCommerce\Assets\AssetGetter;
|
|
/**
|
|
* Class P24PaymentMethod
|
|
*/
|
|
class P24PaymentMethod extends AbstractPaymentMethodType
|
|
{
|
|
private AssetGetter $asset_getter;
|
|
/**
|
|
* The assets version.
|
|
*
|
|
* @var string
|
|
*/
|
|
private $version;
|
|
/**
|
|
* P24Gateway WC gateway.
|
|
*
|
|
* @var P24Gateway
|
|
*/
|
|
private $gateway;
|
|
/**
|
|
* @param AssetGetter $asset_getter
|
|
* @param string $version The assets version.
|
|
* @param P24Gateway $gateway Przelewy24 WC gateway.
|
|
*/
|
|
public function __construct(AssetGetter $asset_getter, string $version, \WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods\P24Gateway $gateway)
|
|
{
|
|
$this->asset_getter = $asset_getter;
|
|
$this->version = $version;
|
|
$this->gateway = $gateway;
|
|
$this->name = \WooCommerce\PayPalCommerce\LocalAlternativePaymentMethods\P24Gateway::ID;
|
|
}
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function initialize()
|
|
{
|
|
}
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function is_active()
|
|
{
|
|
return \true;
|
|
}
|
|
/**
|
|
* {@inheritDoc}
|
|
*/
|
|
public function get_payment_method_script_handles()
|
|
{
|
|
wp_register_script('ppcp-p24-payment-method', $this->asset_getter->get_asset_url('p24-payment-method.js'), array(), $this->version, \true);
|
|
return array('ppcp-p24-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);
|
|
}
|
|
}
|