Automattic\WooCommerce\Internal\Features

FeaturesController::display_notices_in_plugins_page()privateWC 1.0

Handler for the admin_notices action.

Method of the class: FeaturesController{}

No Hooks.

Return

null. Nothing (null).

Usage

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

FeaturesController::display_notices_in_plugins_page() code WC 8.7.0

private function display_notices_in_plugins_page(): void {
	if ( ! $this->verify_did_woocommerce_init() ) {
		return;
	}

	$feature_filter_description_shown = $this->maybe_display_current_feature_filter_description();
	if ( ! $feature_filter_description_shown ) {
		$this->maybe_display_feature_incompatibility_warning();
	}
}