Affiliates, Affiliates Pro and Affiliates Enterprise.
* Version: 1.1.0
* Author: itthinx
* Author URI: http://www.itthinx.com/
* Donate-Link: http://www.itthinx.com/shop/affiliates-enterprise/
* License: GPLv3
*/
if ( !defined( 'ABSPATH' ) ) {
exit;
}
define( 'AFFILIATES_IMPORT_PLUGIN_VERSION', '1.1.0' );
/**
* Plugin boot.
*/
function affiliates_import_plugins_loaded() {
if ( class_exists( 'Affiliates' ) ) {
define( 'AFFILIATES_IMPORT_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
define( 'AFFILIATES_IMPORT_LIB', AFFILIATES_IMPORT_DIR . '/lib' );
define( 'AFFILIATES_IMPORT_PLUGIN_URL', plugins_url( 'affiliates-import' ) );
require_once AFFILIATES_IMPORT_LIB . '/class-affiliates-import.php';
require_once AFFILIATES_IMPORT_LIB . '/class-affiliates-import-process.php';
}
}
add_action( 'plugins_loaded', 'affiliates_import_plugins_loaded' );