PluginProbe ʕ •ᴥ•ʔ
Syncee Premium Dropshipping & Wholesale / 1.0.27
Syncee Premium Dropshipping & Wholesale v1.0.27
1.0.28 1.0.29 1.0.27 trunk 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 1.0.22 1.0.23 1.0.24 1.0.25 1.0.26
syncee-global-dropshipping / plugin.php
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