Changeset 49090 for trunk/src/wp-admin/includes/privacy-tools.php
- Timestamp:
- 10/04/2020 03:21:38 AM (5 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/privacy-tools.php (modified) (16 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/privacy-tools.php
r49026 r49090 21 21 22 22 if ( ! $request || 'user_request' !== $request->post_type ) { 23 return new WP_Error( 'privacy_request_error', __( 'Invalid request.' ) );23 return new WP_Error( 'privacy_request_error', __( 'Invalid user privacy request.' ) ); 24 24 } 25 25 … … 29 29 return $result; 30 30 } elseif ( ! $result ) { 31 return new WP_Error( 'privacy_request_error', __( 'Unable to initiate confirmation request.' ) );31 return new WP_Error( 'privacy_request_error', __( 'Unable to initiate user privacy confirmation request.' ) ); 32 32 } 33 33 … … 50 50 51 51 if ( ! $request ) { 52 return new WP_Error( 'privacy_request_error', __( 'Invalid request.' ) );52 return new WP_Error( 'privacy_request_error', __( 'Invalid user privacy request.' ) ); 53 53 } 54 54 … … 105 105 'action_type', 106 106 'action_type', 107 __( 'Invalid action.' ),107 __( 'Invalid user privacy action.' ), 108 108 'error' 109 109 ); … … 117 117 'action_type', 118 118 'action_type', 119 __( 'Invalid action.' ),119 __( 'Invalid user privacy action.' ), 120 120 'error' 121 121 ); … … 298 298 function wp_privacy_generate_personal_data_export_file( $request_id ) { 299 299 if ( ! class_exists( 'ZipArchive' ) ) { 300 wp_send_json_error( __( 'Unable to generate export file. ZipArchive not available.' ) );300 wp_send_json_error( __( 'Unable to generate user privacy export file. ZipArchive not available.' ) ); 301 301 } 302 302 … … 305 305 306 306 if ( ! $request || 'export_personal_data' !== $request->action_name ) { 307 wp_send_json_error( __( 'Invalid request ID when generating export file.' ) );307 wp_send_json_error( __( 'Invalid request ID when generating user privacy export file.' ) ); 308 308 } 309 309 … … 311 311 312 312 if ( ! is_email( $email_address ) ) { 313 wp_send_json_error( __( 'Invalid email address when generating export file.' ) );313 wp_send_json_error( __( 'Invalid email address when generating user privacy export file.' ) ); 314 314 } 315 315 … … 319 319 320 320 if ( ! wp_mkdir_p( $exports_dir ) ) { 321 wp_send_json_error( __( 'Unable to create export folder.' ) );321 wp_send_json_error( __( 'Unable to create user privacy export folder.' ) ); 322 322 } 323 323 … … 327 327 $file = fopen( $index_pathname, 'w' ); 328 328 if ( false === $file ) { 329 wp_send_json_error( __( 'Unable to protect export folder from browsing.' ) );329 wp_send_json_error( __( 'Unable to protect user privacy export folder from browsing.' ) ); 330 330 } 331 331 fwrite( $file, '<!-- Silence is golden. -->' ); … … 396 396 397 397 if ( false === $file ) { 398 wp_send_json_error( __( 'Unable to open export file (JSON report) for writing.' ) );398 wp_send_json_error( __( 'Unable to open user privacy export file (JSON report) for writing.' ) ); 399 399 } 400 400 … … 411 411 412 412 if ( false === $file ) { 413 wp_send_json_error( __( 'Unable to open export file (HTML report) for writing.' ) );413 wp_send_json_error( __( 'Unable to open user privacy export file (HTML report) for writing.' ) ); 414 414 } 415 415 … … 505 505 if ( true === $zip->open( $archive_pathname, ZipArchive::CREATE ) ) { 506 506 if ( ! $zip->addFile( $json_report_pathname, 'export.json' ) ) { 507 $error = __( 'Unable to add data to JSON file.' );507 $error = __( 'Unable to add data to user privacy export file (JSON format).' ); 508 508 } 509 509 510 510 if ( ! $zip->addFile( $html_report_pathname, 'index.html' ) ) { 511 $error = __( 'Unable to add data to HTML file.' );511 $error = __( 'Unable to add data to user privacy export file (HTML format).' ); 512 512 } 513 513 … … 530 530 } 531 531 } else { 532 $error = __( 'Unable to open export file (archive) for writing.' );532 $error = __( 'Unable to open user privacy export file (archive) for writing.' ); 533 533 } 534 534 … … 759 759 760 760 if ( ! $request || 'export_personal_data' !== $request->action_name ) { 761 wp_send_json_error( __( 'Invalid request ID when merging exporter data.' ) );761 wp_send_json_error( __( 'Invalid request ID when merging user privacy exporter data.' ) ); 762 762 } 763 763 … … 910 910 911 911 if ( ! $request || 'remove_personal_data' !== $request->action_name ) { 912 wp_send_json_error( __( 'Invalid request ID when processing eraser data.' ) );912 wp_send_json_error( __( 'Invalid request ID when processing user privacy eraser data.' ) ); 913 913 } 914 914
Note: See TracChangeset
for help on using the changeset viewer.