forked from Progressus-io/postnl-for-woocommerce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
postnl-for-woocommerce.php
53 lines (47 loc) · 1.72 KB
/
postnl-for-woocommerce.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/**
* Plugin Name: PostNL for WooCommerce
* Plugin URI: https://github.com/Progressus-io/postnl-for-woocommerce/
* Description: With this plug-in you can easily confirm your PostNL shipments and print shipping labels in no time. In addition, your customers are more in control because they choose where and when they receive their order.
* Author: PostNL
* Author URI: https://postnl.post/
* Version: 5.6.2
* Tested up to: 6.6
* WC requires at least: 4.0
* WC tested up to: 9.3
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @package PostNLWooCommerce
*/
namespace PostNLWooCommerce;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
if ( ! defined( 'POSTNL_WC_PLUGIN_FILE' ) ) {
define( 'POSTNL_WC_PLUGIN_FILE', __FILE__ );
}
if ( ! defined( 'POSTNL_WC_PLUGIN_BASENAME' ) ) {
define( 'POSTNL_WC_PLUGIN_BASENAME', plugin_basename( POSTNL_WC_PLUGIN_FILE ) );
}
require_once ( plugin_dir_path( __FILE__ ) . '/vendor/autoload.php' );
/**
* Main PostNL for WooCommerce.
*
* @return Main instance.
*/
function postnl() {
return Main::instance();
}
add_action( 'plugins_loaded', 'PostNLWooCommerce\postnl' );