bp_get_document_privacy()

Return the document privacy.

Description

Return

(string) The document privacy.

Source

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

2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
function bp_get_document_privacy() {
    global $document_template, $document_folder_template;
 
    $db_document_privacy = '';
    if ( isset( $document_template ) && isset( $document_template->document ) && isset( $document_template->document->visibility ) ) {
        $db_document_privacy = $document_template->document->visibility;
    } elseif ( isset( $document_folder_template ) && isset( $document_folder_template->folder ) && isset( $document_folder_template->folder->visibility ) ) {
        $db_document_privacy = $document_folder_template->folder->visibility;
    }
 
    /**
     * Filters the document privacy being displayed.
     *
     * @since BuddyBoss 1.4.0
     *
     * @param string The privacy.
     */
    return apply_filters( 'bp_get_document_privacy', $db_document_privacy, $document_template, $document_folder_template );
}

Changelog

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