bp_register_notifications_personal_data_exporter( array $exporters )
Register Notifications personal data exporter.
Description Description
Parameters Parameters
- $exporters
-
(Required) An array of personal data exporters.
Return Return
(array) An array of personal data exporters.
Source Source
File: bp-notifications/bp-notifications-filters.php
function bp_register_notifications_personal_data_exporter( $exporters ) { $exporters['buddypress-notifications'] = array( 'exporter_friendly_name' => __( 'BuddyPress Notifications Data', 'buddypress' ), 'callback' => 'bp_notifications_personal_data_exporter', 'exporter_bp_friendly_name' => _x( 'Notifications Data', 'BuddyPress Notifications data exporter friendly name', 'buddypress' ), ); return $exporters; }
Changelog Changelog
Version | Description |
---|---|
5.0.0 | adds an exporter_bp_friendly_name param to exporters. |
4.0.0 | Introduced. |