apply_filters( ‘wp_privacy_personal_data_export_page’, array $response, int $exporter_index, string $email_address, int $page, int $request_id, bool $send_as_email, string $exporter_key )

In this article

Filters a page of personal data exporter data. Used to build the export report.

Description

Allows the export response to be consumed by destinations in addition to Ajax.

Parameters

$responsearray
The personal data for the given exporter and page number.
$exporter_indexint
The index of the exporter that provided this data.
$email_addressstring
The email address associated with this personal data.
$pageint
The page number for this response.
$request_idint
The privacy request post ID associated with this request.
$send_as_emailbool
Whether the final results of the export should be emailed to the user.
$exporter_keystring
The key (slug) of the exporter that provided this data.

Source

$response = apply_filters( 'wp_privacy_personal_data_export_page', $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key );

Changelog

VersionDescription
4.9.6Introduced.

User Contributed Notes

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