filtrod 4.9.6
wp_privacy_personal_data_export_page
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
| Parametr | Typ | Opis |
|---|---|---|
$response | array | The personal data for the given exporter and page number. |
$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 number for this response. |
$request_id | int | The privacy request post ID associated with this request. |
$send_as_email | bool | 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. |
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
}
// 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