pro_installed() ) { self::$instance->constants(); self::$instance->includes(); } self::$instance->hooks(); } return self::$instance; } /** * Setup plugin constants * * @access private * @since 1.0.0 * @return void */ private function constants() { // Plugin version define( 'AUTOMATORWP_WEFORMS_VER', '1.0.0' ); // Plugin file define( 'AUTOMATORWP_WEFORMS_FILE', __FILE__ ); // Plugin path define( 'AUTOMATORWP_WEFORMS_DIR', plugin_dir_path( __FILE__ ) ); // Plugin URL define( 'AUTOMATORWP_WEFORMS_URL', plugin_dir_url( __FILE__ ) ); } /** * Include plugin files * * @access private * @since 1.0.0 * @return void */ private function includes() { if( $this->meets_requirements() ) { // Triggers require_once AUTOMATORWP_WEFORMS_DIR . 'includes/triggers/submit-form.php'; // Anonymous Triggers require_once AUTOMATORWP_WEFORMS_DIR . 'includes/triggers/anonymous-submit-form.php'; // Includes require_once AUTOMATORWP_WEFORMS_DIR . 'includes/functions.php'; } } /** * Setup plugin hooks * * @access private * @since 1.0.0 * @return void */ private function hooks() { add_action( 'automatorwp_init', array( $this, 'register_integration' ) ); } /** * Registers this integration * * @since 1.0.0 */ function register_integration() { automatorwp_register_integration( 'weforms', array( 'label' => 'weForms', 'icon' => AUTOMATORWP_WEFORMS_URL . 'assets/weforms.svg', ) ); } /** * Check if there are all plugin requirements * * @since 1.0.0 * * @return bool True if installation meets all requirements */ private function meets_requirements() { if ( ! class_exists( 'AutomatorWP' ) ) { return false; } if ( ! class_exists( 'weForms' ) ) { return false; } return true; } /** * Check if the pro version of this integration is installed * * @since 1.0.0 * * @return bool True if pro version installed */ private function pro_installed() { if ( ! class_exists( 'AutomatorWP_weForms' ) ) { return false; } return true; } } /** * The main function responsible for returning the one true AutomatorWP_Integration_weForms instance to functions everywhere * * @since 1.0.0 * @return \AutomatorWP_Integration_weForms The one true AutomatorWP_Integration_weForms */ function AutomatorWP_Integration_weForms() { return AutomatorWP_Integration_weForms::instance(); } add_action( 'automatorwp_pre_init', 'AutomatorWP_Integration_weForms' );