-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnavex.php
31 lines (29 loc) · 854 Bytes
/
navex.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
<?php
/**
* Shipper
*
* @package Shiiper
* @author mavericklp28
* @license gplv2
* @version 1.0.0
*
* @wordpress-plugin
* Plugin Name: Shipper
* Plugin URI: https://shiparon.com
* Description: WooCommerce integration with Shiparon
* Version: 1.0.0
* Author: Shiparon
* Author URI: https://shiparon.com
* Text Domain: spr
* Domain Path: /languages
* License: GPLv2
* License URI: https://shiparon.com
*
* You should have received a copy of the GNU General Public License
* along with Shipper. If not, see <https://www.gnu.org/licenses/gpl-2.0.html/>.
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) exit;
// Include your custom code here.
include(dirname(__FILE__) . '/includes/admin-options.php');
require(dirname(__FILE__) . '/includes/woo-options.php');