Affiliates, Affiliates Pro and Affiliates Enterprise with Ninja Forms. * Version: 2.0.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_NINJA_FORMS_PLUGIN_VERSION', '2.0.0' ); /** * Plugin boot. */ function affiliates_ninja_forms_plugins_loaded() { if ( class_exists( 'Affiliates' ) && class_exists( 'NF_Abstracts_Action' ) ) { define( 'AFFILIATES_NINJA_FORMS_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) ); define( 'AFFILIATES_NINJA_FORMS_LIB', AFFILIATES_NINJA_FORMS_DIR . '/lib' ); define( 'AFFILIATES_NINJA_FORMS_PLUGIN_URL', plugins_url( 'affiliates-ninja-forms' ) ); require_once AFFILIATES_NINJA_FORMS_LIB . '/class-affiliates-ninja-forms.php'; } } add_action( 'plugins_loaded', 'affiliates_ninja_forms_plugins_loaded' );