-
Notifications
You must be signed in to change notification settings - Fork 59
/
woocommerce-pagseguro.php
43 lines (40 loc) · 1.56 KB
/
woocommerce-pagseguro.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: Claudio Sanches - PagSeguro for WooCommerce
* Plugin URI: https://github.com/claudiosanches/woocommerce-pagseguro
* Description: Includes PagSeguro as a payment gateway to WooCommerce.
* Author: Claudio Sanches
* Author URI: https://claudiosanches.com
* Version: 2.15.0
* Requires at least: 4.0
* Requires PHP: 5.6
* License: GPLv3 or later
* Text Domain: woocommerce-pagseguro
* Domain Path: /languages
* WC requires at least: 5.0
* WC tested up to: 7.6
*
* Claudio Sanches - PagSeguro for WooCommerce 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 any later version.
*
* Claudio Sanches - PagSeguro for WooCommerce 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 Claudio Sanches - PagSeguro for WooCommerce. If not, see
* <https://www.gnu.org/licenses/gpl-3.0.txt>.
*
* @package WooCommerce_PagSeguro
*/
defined( 'ABSPATH' ) || exit;
// Plugin constants.
define( 'WC_PAGSEGURO_VERSION', '2.15.0' );
define( 'WC_PAGSEGURO_PLUGIN_FILE', __FILE__ );
if ( ! class_exists( 'WC_PagSeguro' ) ) {
include_once dirname( __FILE__ ) . '/includes/class-wc-pagseguro.php';
add_action( 'plugins_loaded', array( 'WC_PagSeguro', 'init' ) );
}