PluginProbe
Backend Payments for WooCommerce / trunk
Backend Payments for WooCommerce vtrunk
2.8.11 1.4.0 1.4.1 1.5.0 1.6.0 1.6.1 1.6.2 1.7.0 1.7.1 1.8.0 1.8.1 1.9.0 2.0.0 2.1.0 2.2.0 2.3.0 2.4.0 2.4.1 2.5.0 2.5.1 2.6.0 2.6.1 2.6.10 2.6.11 2.6.12 All 66 releases
woo-mp / includes / bootstrap.php

bootstrap.php in Backend Payments for WooCommerce trunk, at includes/bootstrap.php

18 lines 371 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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