mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-05 08:59:14 +08:00
Create Order-Tracking module
This commit is contained in:
parent
08e580c609
commit
0154278b1f
2 changed files with 28 additions and 0 deletions
12
modules/ppcp-order-tracking/extensions.php
Normal file
12
modules/ppcp-order-tracking/extensions.php
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?php
|
||||
/**
|
||||
* The order tracking module extensions.
|
||||
*
|
||||
* @package WooCommerce\PayPalCommerce\OrderTracking
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace WooCommerce\PayPalCommerce\OrderTracking;
|
||||
|
||||
return array();
|
16
modules/ppcp-order-tracking/module.php
Normal file
16
modules/ppcp-order-tracking/module.php
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
/**
|
||||
* The order tracking module.
|
||||
*
|
||||
* @package WooCommerce\PayPalCommerce\OrderTracking
|
||||
*/
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace WooCommerce\PayPalCommerce\OrderTracking;
|
||||
|
||||
use Dhii\Modular\Module\ModuleInterface;
|
||||
|
||||
return static function (): ModuleInterface {
|
||||
return new OrderTrackingModule();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue