akcjaod 4.9.6
wp_privacy_personal_data_export_file_created
Opis — z kodu źródłowego
Fires right after all personal data has been written to the export file.
Parametry
| Parametr | Typ | Opis |
|---|---|---|
$archive_pathname | string | The full path to the export file on the filesystem. |
$archive_url | string | The URL of the archive file. |
$html_report_pathname | string | The full path to the HTML personal data report on the filesystem. |
$request_id | int | The export request ID. |
$json_report_pathname | string | The full path to the JSON personal data report on the filesystem. |
Wywołanie
Rejestracja callbackaphp
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'wp_privacy_personal_data_export_file_created', 'twoja_funkcja', 10, 5 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4, $param_5) {
// Twój kod
}
// rejestracja funkcji zwrotnej — podaj liczbę argumentów!
add_action( 'wp_privacy_personal_data_export_file_created', 'twoja_funkcja', 10, 5 );
function twoja_funkcja($param_1, $param_2, $param_3, $param_4, $param_5) {
// Twój kod
}Popularne w tej kategorii