Automattic\WooCommerce\Blocks

InboxNotifications{}WC .

A class used to display inbox messages to merchants in the WooCommerce Admin dashboard.

No Hooks.

Usage

$InboxNotifications = new InboxNotifications();
// use class methods

Methods

  1. public static delete_surface_cart_checkout_blocks_notification()

Notes

  • Package: Automattic\WooCommerce\Blocks

Changelog

Since . Introduced.
Since x.x.x

InboxNotifications{} code WC 8.7.0

class InboxNotifications {

	const SURFACE_CART_CHECKOUT_NOTE_NAME = 'surface_cart_checkout';

	/**
	 * Deletes the note.
	 */
	public static function delete_surface_cart_checkout_blocks_notification() {
		Notes::delete_notes_with_name( self::SURFACE_CART_CHECKOUT_NOTE_NAME );
	}
}