Automattic\WooCommerce\Internal\Admin

ShippingLabelBannerDisplayRules::jetpack_up_to_date()privateWC 1.0

Checks if Jetpack version is supported.

Method of the class: ShippingLabelBannerDisplayRules{}

No Hooks.

Return

true|false.

Usage

// private - for code of main (parent) class only
$result = $this->jetpack_up_to_date();

ShippingLabelBannerDisplayRules::jetpack_up_to_date() code WC 8.7.0

private function jetpack_up_to_date() {
	return version_compare( $this->jetpack_version, $this->min_jetpack_version, '>=' );
}