Automattic\WooCommerce\Blocks
InboxNotifications{}
A class used to display inbox messages to merchants in the WooCommerce Admin dashboard.
Хуков нет.
Использование
$InboxNotifications = new InboxNotifications(); // use class methods
Методы
- public static delete_surface_cart_checkout_blocks_notification()
Заметки
| Пакет: Automattic\WooCommerce\Blocks |
Список изменений
| С версии . | Введена. |
Код InboxNotifications{} InboxNotifications{} WC 11.0.1
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 );
}
}