forked from claudiosanches/woocommerce-correios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
woocommerce-correios.php
43 lines (39 loc) · 1.54 KB
/
woocommerce-correios.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
<?php
/**
* Plugin Name: WooCommerce Correios
* Plugin URI: https://github.com/claudiosanches/woocommerce-correios
* Description: Adds Correios shipping methods to your WooCommerce store.
* Author: Claudio Sanches
* Author URI: https://claudiosanches.com
* Version: 3.6.0
* License: GPLv2 or later
* Text Domain: woocommerce-correios
* Domain Path: /languages
* WC requires at least: 3.0.0
* WC tested up to: 3.2.0
*
* WooCommerce Correios 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 2 of the License, or
* any later version.
*
* WooCommerce Correios 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 WooCommerce Correios. If not, see
* <https://www.gnu.org/licenses/gpl-2.0.txt>.
*
* @package WooCommerce_Correios
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
define( 'WC_CORREIOS_VERSION', '3.6.0' );
define( 'WC_CORREIOS_PLUGIN_FILE', __FILE__ );
if ( ! class_exists( 'WC_Correios' ) ) {
include_once dirname( __FILE__ ) . '/includes/class-wc-correios.php';
add_action( 'plugins_loaded', array( 'WC_Correios', 'init' ) );
}