bp_group_show_document_status_setting( string $setting, object|bool $group = false )

Output the ‘checked’ value, if needed, for a given document_status on the group create/admin screens

Description

Parameters

$setting

(Required) The setting you want to check against ('members', 'mods', or 'admins').

$group

(Optional) Group object. Default: current group in loop.

Default value: false

Source

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

2656
2657
2658
2659
2660
2661
2662
2663
2664
function bp_group_show_document_status_setting( $setting, $group = false ) {
    $group_id = isset( $group->id ) ? $group->id : false;
 
    $document_status = bp_group_get_document_status( $group_id );
 
    if ( $setting === $document_status ) {
        echo ' checked="checked"';
    }
}

Changelog

Changelog
Version Description
BuddyBoss 1.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.