bp_get_document_folder_privacy()
Return the document privacy.
Description
Return
(string) The document privacy.
Source
File: bp-document/bp-document-template.php
function bp_get_document_folder_privacy() {
global $document_folder_template;
$db_document_privacy = '';
if ( 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_folder_privacy', $db_document_privacy, $document_folder_template );
}
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.