WISHPOND_SECURE_SITE_URL . "/central/merchant_signups/new/", 'WISHPOND_LOGIN_URL' => WISHPOND_SECURE_SITE_URL . "/login", // Wishpond Ads 'ADS_CAMPAIGNS_DIR' => plugin_dir_path( __FILE__ ), 'ADS_CAMPAIGNS_ADMIN_EMAIL' => ADS_CAMPAIGNS_SLUG."-admin-email", 'ADS_CAMPAIGNS_FIRST_VISIT' => ADS_CAMPAIGNS_SLUG."-first-visit", 'DISABLE_GUEST_SIGNUP_OPTION' => ADS_CAMPAIGNS_SLUG."-guest-signup" ); foreach( $plugin_constants as $name => $value) { if ( ! defined( $name ) ) { define( $name, $value ); } } /* * List & Load plugin files */ $PLUGIN_FILES = array( /* What we use to store options in wordpress */ "wishpond-ads-storage.php", "wishpond-ads-helpers.php", /* The class that performs the authentication */ "wishpond-ads-authenticator.php", "register-assets.php", "menu.php", "meta-boxes.php", "ads-classes/wishpond-google-ad.php", "ads-classes/wishpond-facebook-ad.php", "ads-classes/wishpond-ad.php" ); foreach( $PLUGIN_FILES as $file ) { include_once ADS_CAMPAIGNS_DIR . $file; } ?>