Automattic\WooCommerce\Internal\Admin

ShippingLabelBannerDisplayRules::jetpack_installed_and_active()privateWC 1.0

Checks if jetpack is installed and active.

Method of the class: ShippingLabelBannerDisplayRules{}

No Hooks.

Return

true|false.

Usage

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

ShippingLabelBannerDisplayRules::jetpack_installed_and_active() code WC 8.6.1

private function jetpack_installed_and_active() {
	return ! ! $this->jetpack_version;
}