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 9.7.1

public function should_display_banner() {
	return $this->banner_not_dismissed() &&
		$this->dotcom_connected &&
		$this->no_incompatible_plugins_installed &&
		$this->order_has_shippable_products() &&
		$this->store_in_us_and_usd() &&
		$this->wcs_not_installed();
}