BP_Notifications_Notification::mark_all_for_user( int $user_id, int $is_new, int $item_id, string $component_name = '', string $component_action = '', int $secondary_item_id )

Mark all user notifications as read.

Description

Parameters

$user_id

(Required) The ID of the user who the notifications are for.

$is_new

(Required) Mark as read (1) or unread (0).

$item_id

(Required) Item ID being acted on.

$component_name

(Optional) Name of component the notifications are for.

Default value: ''

$component_action

(Optional) Name of the component action.

Default value: ''

$secondary_item_id

(Required) The ID of the secondary item.

Return

(int|false) False on failure to update. ID on success.

Source

File: bp-notifications/classes/class-bp-notifications-notification.php

1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
public static function mark_all_for_user( $user_id, $is_new = 0, $item_id = 0, $component_name = '', $component_action = '', $secondary_item_id = 0 ) {
 
    // Values to be updated.
    $update_args = array(
        'is_new' => $is_new,
    );
 
    // WHERE clauses.
    $where_args = array(
        'user_id' => $user_id,
    );
 
    if ( ! empty( $item_id ) ) {
        $where_args['item_id'] = $item_id;
    }
 
    if ( ! empty( $component_name ) ) {
        $where_args['component_name'] = $component_name;
    }
 
    if ( ! empty( $component_action ) ) {
        $where_args['component_action'] = $component_action;
    }
 
    if ( ! empty( $secondary_item_id ) ) {
        $where_args['secondary_item_id'] = $secondary_item_id;
    }
 
    return self::update( $update_args, $where_args );
}

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.