-
Notifications
You must be signed in to change notification settings - Fork 0
/
zao-woocommerce-quickbooks-online-integration.php
54 lines (48 loc) · 1.75 KB
/
zao-woocommerce-quickbooks-online-integration.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
54
<?php
/**
* Plugin Name: Zao WooCommerce QuickBooks Online Integration
* Plugin URI: https://zao.is
* Description: Integrates QuickBooks Online with WooCommerce
* Version: 0.1.0
* Author: Zao
* Author URI: https://zao.is
* Text Domain: zwqoi
* Domain Path: /languages
* License: GPL-2.0+
* WC tested up to: 3.2.0
*/
/**
* Copyright (c) 2017 Zao (email : [email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
* your discretion, any later version, as published by the Free
* Software Foundation.
*
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
/**
* Built using yo wp-make:plugin
* Copyright (c) 2017 10up, LLC
* https://github.com/10up/generator-wp-make
*/
// Useful global constants
define( 'ZWQOI_VERSION', '0.1.0' );
define( 'ZWQOI_BASENAME', plugin_basename( __FILE__ ) );
define( 'ZWQOI_URL', plugin_dir_url( __FILE__ ) );
define( 'ZWQOI_PATH', dirname( __FILE__ ) . '/' );
define( 'ZWQOI_INC', ZWQOI_PATH . 'includes/' );
// Include files
require_once ZWQOI_INC . 'functions/core.php';
// Activation/Deactivation
register_activation_hook( __FILE__, '\Zao\WC_QBO_Integration\activate' );
register_deactivation_hook( __FILE__, '\Zao\WC_QBO_Integration\deactivate' );
// Bootstrap
Zao\WC_QBO_Integration\setup();