Automattic\WooCommerce\Internal\StockNotifications

NotificationQuery::notification_exists_by_user_idpublic staticWC 1.0

Get a notification by user ID.

Method of the class: NotificationQuery{}

No Hooks.

Returns

true|false. True if the notification exists, false otherwise.

Usage

$result = NotificationQuery::notification_exists_by_user_id( $product_id, $user_id ): bool;
$product_id(int) (required)
The product ID.
$user_id(int) (required)
The user ID.

NotificationQuery::notification_exists_by_user_id() code WC 10.3.6

public static function notification_exists_by_user_id( int $product_id, int $user_id ): bool {
	return \WC_Data_Store::load( 'stock_notification' )->notification_exists_by_user_id( $product_id, $user_id );
}