bp_nouveau_groups_notification_filters()
Register notifications filters for the groups component.
Description
Source
File: bp-templates/bp-nouveau/includes/groups/functions.php
function bp_nouveau_groups_notification_filters() {
$notifications = array(
array(
'id' => 'new_membership_request',
'label' => __( 'Pending Group membership requests', 'buddyboss' ),
'position' => 55,
),
array(
'id' => 'membership_request_accepted',
'label' => __( 'Accepted Group membership requests', 'buddyboss' ),
'position' => 65,
),
array(
'id' => 'membership_request_rejected',
'label' => __( 'Rejected Group membership requests', 'buddyboss' ),
'position' => 75,
),
array(
'id' => 'member_promoted_to_admin',
'label' => __( 'Group Organizer promotions', 'buddyboss' ),
'position' => 85,
),
array(
'id' => 'member_promoted_to_mod',
'label' => __( 'Group Moderator promotions', 'buddyboss' ),
'position' => 95,
),
array(
'id' => 'group_invite',
'label' => __( 'Group invitations', 'buddyboss' ),
'position' => 105,
),
);
foreach ( $notifications as $notification ) {
bp_nouveau_notifications_register_filter( $notification );
}
}
Changelog
| Version | Description |
|---|---|
| BuddyPress 3.0.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.