=' ); } /** * Check if the supported Stripe addon is active for modern builder settings. * * @since 1.8.4 * * @return bool */ public function is_supported_modern_settings() { return defined( 'WPFORMS_STRIPE_VERSION' ) && version_compare( WPFORMS_STRIPE_VERSION, self::MIN_MODERN_SETTINGS_VERSION, '>=' ); } /** * Display wp-admin notification saying user first have to update addon to the latest version. * * @since 1.8.2 */ public function display_legacy_addon_notice() { echo '

'; esc_html_e( 'The WPForms Stripe addon is out of date. To avoid payment processing issues, please upgrade the Stripe addon to the latest version.', 'wpforms-lite' ); echo '

'; } }