blob: 9679bd22a094835baf959a4bb218d88c873467a8 [file] [log] [blame]
swissChilif0cbdc32023-01-05 17:21:38 -05001<?php
2if ( ! defined( 'ABSPATH' ) ) {
3 exit;
4}
5
6class WC_Stripe_UPE_Compatibility {
7 const MIN_WP_VERSION = '5.6';
8 const MIN_WC_VERSION = '5.5';
9 const LEARN_MORE_LINK = 'https://developer.woocommerce.com/2021/08/26/developer-advisory-woocommerce-stripe-support-policy-change/';
10
11 public static function is_wp_supported() {
12 return version_compare( get_bloginfo( 'version' ), self::MIN_WP_VERSION, '>=' );
13 }
14
15 public static function is_wc_supported() {
16 return version_compare( WC_VERSION, self::MIN_WC_VERSION, '>=' );
17 }
18}