wp_privacy_personal_data_export_page filter-hook . WP 4.9.6
Filters a page of personal data exporter data. Used to build the export report.
Allows the export response to be consumed by destinations in addition to Ajax.
Usage
add_filter( 'wp_privacy_personal_data_export_page', 'filter_function_name_8677', 10, 7 ); function filter_function_name_8677( $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key ){ // filter... return $response; }
- $response(array)
- The personal data for the given exporter and page.
- $exporter_index(int)
- The index of the exporter that provided this data.
- $email_address(string)
- The email address associated with this personal data.
- $page(int)
- The page for this response.
- $request_id(int)
- The privacy request post ID associated with this request.
- $send_as_email(true/false)
- Whether the final results of the export should be emailed to the user.
- $exporter_key(string)
- The key (slug) of the exporter that provided this data.
Changelog
Since 4.9.6 | Introduced. |
Where the hook is called
wp_privacy_personal_data_export_page
wp-admin/includes/ajax-actions.php 4903
$response = apply_filters( 'wp_privacy_personal_data_export_page', $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key );
Where in WP core the hook is used WordPress
wp-admin/includes/ajax-actions.php 135
add_filter( 'wp_privacy_personal_data_export_page', 'wp_privacy_process_personal_data_export_page', 10, 7 );