bp_document_remove_all_user_data( int $user_id )
Completely remove a user’s document data.
Description
Parameters
- $user_id
-
(Required) ID of the user whose document is being deleted.
Return
(bool)
Source
File: bp-document/bp-document-functions.php
function bp_document_remove_all_user_data( $user_id = 0 ) { if ( empty( $user_id ) ) { return false; } // Clear the user's folders from the sitewide stream and clear their document tables. bp_folder_delete( array( 'user_id' => $user_id ) ); // Clear the user's document from the sitewide stream and clear their document tables. bp_document_delete( array( 'user_id' => $user_id ) ); /** * Fires after the removal of all of a user's document data. * * @param int $user_id ID of the user being deleted. * * @since BuddyBoss 1.4.0 */ do_action( 'bp_document_remove_all_user_data', $user_id ); }
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.