woocommerce-paypal-payments/modules/ppcp-axo-block/services.php

44 lines
1.3 KiB
PHP
Raw Normal View History

2024-09-05 21:17:36 +02:00
<?php
/**
* The Axo module services.
*
* @package WooCommerce\PayPalCommerce\Axo
*/
2024-09-09 16:00:33 +02:00
declare( strict_types = 1 );
2024-09-05 21:17:36 +02:00
namespace WooCommerce\PayPalCommerce\AxoBlock;
use WooCommerce\PayPalCommerce\Button\Assets\SmartButtonInterface;
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
return array(
// If AXO Block is configured and onboarded.
2024-09-09 16:00:33 +02:00
'axoblock.available' => static function ( ContainerInterface $container ) : bool {
2024-09-05 21:17:36 +02:00
return true;
},
2024-09-09 16:00:33 +02:00
'axoblock.url' => static function ( ContainerInterface $container ) : string {
2024-09-05 21:17:36 +02:00
/**
* The path cannot be false.
*
* @psalm-suppress PossiblyFalseArgument
*/
return plugins_url(
'/modules/ppcp-axo-block/',
dirname( realpath( __FILE__ ), 3 ) . '/woocommerce-paypal-payments.php'
);
},
2024-09-09 16:00:33 +02:00
'axoblock.method' => static function ( ContainerInterface $container ) : AxoBlockPaymentMethod {
2024-09-05 21:17:36 +02:00
return new AxoBlockPaymentMethod(
$container->get( 'axoblock.url' ),
$container->get( 'ppcp.asset-version' ),
$container->get( 'axo.gateway' ),
2024-09-09 16:00:33 +02:00
fn() : SmartButtonInterface => $container->get( 'button.smart-button' ),
2024-09-05 21:17:36 +02:00
$container->get( 'wcgateway.settings' ),
$container->get( 'wcgateway.configuration.dcc' ),
2024-09-05 21:17:36 +02:00
$container->get( 'onboarding.environment' ),
$container->get( 'wcgateway.url' )
);
},
);