bp_groups_accept_request_mark_notifications( int $user_id, int $group_id )
Mark notifications read when a member’s group membership request is granted.
Description
Parameters
- $user_id
-
(Required) ID of the user.
- $group_id
-
(Required) ID of the group.
Source
File: bp-groups/bp-groups-notifications.php
function bp_groups_accept_request_mark_notifications( $user_id, $group_id ) {
if ( bp_is_active( 'notifications' ) ) {
// First null parameter marks read for all admins.
bp_notifications_mark_notifications_by_item_id( null, $group_id, buddypress()->groups->id, 'new_membership_request', $user_id );
}
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 2.8.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.