BP_Notification_Export::process_erase( $user, $page, bool $email_address )
Delete member notifications.
Description
Parameters
- $user
-
(Required)
- $page
-
(Required)
- $email_address
-
(Required)
Return
(array)
Source
File: bp-core/gdpr/class-bp-notification-export.php
function process_erase( $user, $page, $email_address ) {
global $wpdb;
if ( ! $user || is_wp_error( $user ) ) {
return $this->response_erase( array(), true );
}
$items_removed = true;
$items_retained = false;
/**
* Make use of buddypress default data remover.
*/
bp_notifications_delete_notifications_on_user_delete( $user->ID );
$done = true;
return $this->response_erase( $items_removed, $done, array(), $items_retained );
}
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.