-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshiparon.php
32 lines (30 loc) · 1.07 KB
/
shiparon.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
<?php
/**
* Shiparon
*
* @package Shiparon
* @author Shiparon
* @license gplv3
* @version 1.0.0
*
* @wordpress-plugin
* Plugin Name: Shiparon
* Plugin URI: https://shiparon.com
* Description: This is some demo short description...
* Version: 1.0.0
* Author: Shiparon
* Author URI: https://shiparon.com
* Text Domain: Shiparon
* Domain Path: /languages
* License: GPLv3
* License URI: https://shiparon.com
*
* You should have received a copy of the GNU General Public License
* along with Shiparon. If not, see <https://www.gnu.org/licenses/gpl-3.0.html/>.
*/
// Exit if accessed directly to enhance security.
if ( ! defined( 'ABSPATH' ) ) exit;
// Include admin options. This page will get the API end point and use it later to post shipment info to the carrier website.
include(dirname(__FILE__) . '/includes/admin-options.php');
// Include WooCommerce options. This file will add a news options meta box in the order page .
require(dirname(__FILE__) . '/includes/woo-options.php');