Automattic\WooCommerce\Admin

PluginsHelper::maybe_enqueue_scripts_for_connect_notice()public staticWC 1.0

Enqueue scripts for connect notice in WooCommerce settings page.

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

Хуков нет.

Возвращает

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

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

$result = PluginsHelper::maybe_enqueue_scripts_for_connect_notice();

Код PluginsHelper::maybe_enqueue_scripts_for_connect_notice() WC 9.7.1

public static function maybe_enqueue_scripts_for_connect_notice() {
	if ( 'woocommerce_page_wc-settings' !== get_current_screen()->id ) {
		return;
	}

	$notice_type = WC_Helper_Updater::get_woo_connect_notice_type();

	if ( 'none' === $notice_type ) {
		return;
	}

	WCAdminAssets::register_script( 'wp-admin-scripts', 'woo-connect-notice' );
	wp_enqueue_script( 'woo-connect-notice' );
}