Automattic\WooCommerce\Internal\Admin

ShippingLabelBannerDisplayRules::should_display_banner()publicWC 1.0

Determines whether banner is eligible for display (does not include a/b logic).

Метод класса: ShippingLabelBannerDisplayRules{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$ShippingLabelBannerDisplayRules = new ShippingLabelBannerDisplayRules();
$ShippingLabelBannerDisplayRules->should_display_banner();

Код ShippingLabelBannerDisplayRules::should_display_banner() WC 8.7.0

public function should_display_banner() {
	return $this->banner_not_dismissed() &&
		$this->jetpack_installed_and_active() &&
		$this->jetpack_up_to_date() &&
		$this->jetpack_connected &&
		$this->no_incompatible_plugins_installed &&
		$this->order_has_shippable_products() &&
		$this->store_in_us_and_usd() &&
		( $this->wcs_not_installed() || (
			$this->wcs_up_to_date() && ! $this->wcs_tos_accepted
		) );
}