| 1 |
<?php |
| 2 |
|
| 3 |
namespace Woo_MP; |
| 4 |
|
| 5 |
use YeEasyAdminNotices\V1\AdminNotice; |
| 6 |
|
| 7 |
defined( 'ABSPATH' ) || die; |
| 8 |
|
| 9 |
require WOO_MP_PATH . '/includes/autoloader.php'; |
| 10 |
|
| 11 |
( new Autoloader( 'Woo_MP\\', WOO_MP_PATH . '/includes/' ) )->register(); |
| 12 |
|
| 13 |
if ( ! class_exists( AdminNotice::class ) ) { |
| 14 |
require WOO_MP_PATH . '/libraries/admin-notices-1.1/AdminNotice.php'; |
| 15 |
} |
| 16 |
|
| 17 |
( new Woo_MP() )->init(); |
| 18 |
|