. */ if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly /** * Check that Easy Digital Downloads, Appthemer Crowdfunding and WPML are all installed. * @return void */ function sofa_crowdfunding_init() { // Make sure that Easy Digital Downloads, Appthemer Crowdfunding and WPML are all activated if ( class_exists('Easy_Digital_Downloads') && class_exists('ATCF_CrowdFunding') && defined('ICL_SITEPRESS_VERSION') ) { include_once('crowdfunding-wpml.class.php'); // Start 'er up get_sofa_crowdfunding_wpml(); } } add_action('plugins_loaded', 'sofa_crowdfunding_init'); /** * Returns the one and only instance of this plugin * @return Sofa_Crowdfunding_WPML */ function get_sofa_crowdfunding_wpml() { return Sofa_Crowdfunding_WPML::get_instance(); }