mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-31 06:52:50 +08:00
46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* The services of the admin notice module.
|
|
*
|
|
* @package WooCommerce\PayPalCommerce\Button
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace WooCommerce\PayPalCommerce\AdminNotices;
|
|
|
|
use WooCommerce\PayPalCommerce\Vendor\Psr\Container\ContainerInterface;
|
|
use WooCommerce\PayPalCommerce\AdminNotices\Renderer\Renderer;
|
|
use WooCommerce\PayPalCommerce\AdminNotices\Renderer\RendererInterface;
|
|
use WooCommerce\PayPalCommerce\AdminNotices\Repository\Repository;
|
|
use WooCommerce\PayPalCommerce\AdminNotices\Repository\RepositoryInterface;
|
|
use WooCommerce\PayPalCommerce\AdminNotices\Endpoint\MuteMessageEndpoint;
|
|
|
|
return array(
|
|
'admin-notices.url' => static function ( ContainerInterface $container ): string {
|
|
$path = realpath( __FILE__ );
|
|
if ( false === $path ) {
|
|
return '';
|
|
}
|
|
return plugins_url(
|
|
'/modules/ppcp-admin-notices/',
|
|
dirname( $path, 3 ) . '/woocommerce-paypal-payments.php'
|
|
);
|
|
},
|
|
'admin-notices.renderer' => static function ( ContainerInterface $container ): RendererInterface {
|
|
return new Renderer(
|
|
$container->get( 'admin-notices.repository' ),
|
|
$container->get( 'admin-notices.url' ),
|
|
$container->get( 'ppcp.asset-version' )
|
|
);
|
|
},
|
|
'admin-notices.repository' => static function ( ContainerInterface $container ): RepositoryInterface {
|
|
return new Repository();
|
|
},
|
|
'admin-notices.mute-message-endpoint' => static function ( ContainerInterface $container ): MuteMessageEndpoint {
|
|
return new MuteMessageEndpoint(
|
|
$container->get( 'button.request-data' ),
|
|
$container->get( 'admin-notices.repository' )
|
|
);
|
|
},
|
|
);
|