WP HOOKS
filtrod 4.9.6

wp_privacy_personal_data_export_page

Args 7Plik wp-admin/includes/ajax-actions.phpDokumentacja WP ↗

Opis — z kodu źródłowego

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.

Parametry

ParametrTypOpis
$responsearrayThe personal data for the given exporter and page number.
$exporter_indexintThe index of the exporter that provided this data.
$email_addressstringThe email address associated with this personal data.
$pageintThe page number for this response.
$request_idintThe privacy request post ID associated with this request.
$send_as_emailboolWhether the final results of the export should be emailed to the user.
$exporter_keystringThe key (slug) of the exporter that provided this data.

Wywołanie

Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_filter( 'wp_privacy_personal_data_export_page', 'twoja_funkcja', 10, 7 );

function twoja_funkcja($param_1, $param_2, $param_3, $param_4, $param_5, $param_6, $param_7) {
	// Twój kod
}

Popularne w tej kategorii