bp_notifications_mark_all_notifications_by_type( int $item_id, string $component_name, string|bool $component_action = false, int|bool $secondary_item_id = false, int|bool $is_new = false )

Mark all notifications read/unread by type.

Description

Used when clearing out notifications for an entire component.

Parameters

$item_id

(int) (Required) ID of the user whose notifications are being deleted.

$component_name

(string) (Required) Name of the associated component.

$component_action

(string|bool) (Optional) Name of the associated action.

Default value: false

$secondary_item_id

(int|bool) (Optional) ID of the secondary associated item.

Default value: false

$is_new

(int|bool) (Optional) 0 for read, 1 for unread.

Default value: false

Return

(int|false) True on success, false on failure.

Source

File: bp-notifications/bp-notifications-functions.php

function bp_notifications_mark_all_notifications_by_type( $item_id, $component_name, $component_action = false, $secondary_item_id = false, $is_new = false ) {
	return BP_Notifications_Notification::update(
		array(
			'is_new' => $is_new
		),
		array(
			'item_id'           => $item_id,
			'secondary_item_id' => $secondary_item_id,
			'component_name'    => $component_name,
			'component_action'  => $component_action
		)
	);
}

Changelog

Changelog
Version Description
BuddyPress 1.9.0 Introduced.

Questions?

We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.