syncee-global-dropshipping
Last commit date
JS
1 year ago
View
3 years ago
img
3 years ago
includes
1 year ago
Syncee.php
1 year ago
plugin.php
1 month ago
readme.txt
1 month ago
plugin.php
34 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Plugin Name: Syncee Premium Dropshipping & Wholesale |
| 5 | * Description: Find dropshipping and wholesale products from trusted US/CA/EU/AU suppliers, import them to [your WooCommerce store](https://syncee.com/woocommerce/). |
| 6 | * Version: 1.0.27 |
| 7 | * Author: Syncee |
| 8 | * Author URI: https://syncee.com |
| 9 | * |
| 10 | * @package Syncee |
| 11 | */ |
| 12 | |
| 13 | if ( ! defined( 'ABSPATH' ) ) { |
| 14 | exit; // Exit if accessed directly. |
| 15 | } |
| 16 | |
| 17 | // Define constants. |
| 18 | define( 'SYNCEE_PLUGIN_VERSION', '1.0.27' ); |
| 19 | |
| 20 | //DEMO |
| 21 | //define( 'SYNCEE_URL', 'https://demo.v5.syncee.io' ); |
| 22 | //define( 'SYNCEE_INSTALLER_URL', 'https://installer.v5.syncee.io' ); |
| 23 | |
| 24 | //STAGE |
| 25 | define( 'SYNCEE_URL', 'https://syncee.com' ); |
| 26 | define( 'SYNCEE_INSTALLER_URL', 'https://installer.syncee.com' ); |
| 27 | |
| 28 | |
| 29 | define( 'SYNCEE_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); |
| 30 | define( 'SYNCEE_RETAILER_REST_PATH', '/wp-json/syncee/retailer/v1/' ); |
| 31 | |
| 32 | |
| 33 | include 'Syncee.php'; |
| 34 |