bp_group_get_invite_status( int|bool $group_id = false )

Get the invite status of a group.

Description

‘invite_status’ became part of BuddyPress in BP 1.5. In order to provide backward compatibility with earlier installations, groups without a status set will default to ‘members’, ie all members in a group can send invitations. Filter ‘bp_group_invite_status_fallback’ to change this fallback behavior.

This function can be used either in or out of the loop.

Parameters

$group_id

(Optional) The ID of the group whose status you want to check. Default: the displayed group, or the current group in the loop.

Default value: false

Return

(bool|string) Returns false when no group can be found. Otherwise returns the group invite status, from among 'members', 'mods', and 'admins'.

Source

File: bp-groups/bp-groups-template.php

2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
function bp_group_get_invite_status( $group_id = false ) {
    global $groups_template;
 
    if ( !$group_id ) {
        $bp = buddypress();
 
        if ( isset( $bp->groups->current_group->id ) ) {
            // Default to the current group first.
            $group_id = $bp->groups->current_group->id;
        } elseif ( isset( $groups_template->group->id ) ) {
            // Then see if we're in the loop.
            $group_id = $groups_template->group->id;
        } else {
            return false;
        }
    }
 
    $invite_status = groups_get_groupmeta( $group_id, 'invite_status' );
 
    // Backward compatibility. When 'invite_status' is not set, fall back to a default value.
    if ( !$invite_status ) {
        $invite_status = apply_filters( 'bp_group_invite_status_fallback', 'members' );
    }
 
    /**
     * Filters the invite status of a group.
     *
     * Invite status in this case means who from the group can send invites.
     *
     * @since BuddyPress 1.5.0
     *
     * @param string $invite_status Membership level needed to send an invite.
     * @param int    $group_id      ID of the group whose status is being checked.
     */
    return apply_filters( 'bp_group_get_invite_status', $invite_status, $group_id );
}

Changelog

Changelog
Version Description
BuddyPress 1.5.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.