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.


Top ↑

Return Return

(array) An array of personal data exporters.


Top ↑

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;
}

Top ↑

Changelog Changelog

Changelog
Version Description
5.0.0 adds an exporter_bp_friendly_name param to exporters.
4.0.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.