Changeset 43228
- Timestamp:
- 05/10/2018 08:23:33 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r43154 r43228 4477 4477 } else { 4478 4478 // No exporters, so we're done. 4479 $exporter_key = ''; 4480 4479 4481 $response = array( 4480 4482 'data' => array(), … … 4496 4498 * @param int $request_id The privacy request post ID associated with this request. 4497 4499 * @param bool $send_as_email Whether the final results of the export should be emailed to the user. 4498 * @param int$exporter_key The key (slug) of the exporter that provided this data.4500 * @param string $exporter_key The key (slug) of the exporter that provided this data. 4499 4501 */ 4500 4502 $response = apply_filters( 'wp_privacy_personal_data_export_page', $response, $exporter_index, $email_address, $page, $request_id, $send_as_email, $exporter_key ); … … 4693 4695 } else { 4694 4696 // No erasers, so we're done. 4697 $eraser_key = ''; 4698 4695 4699 $response = array( 4696 4700 'items_removed' => false, … … 4713 4717 * @param int $page The page for this response. 4714 4718 * @param int $request_id The privacy request post ID associated with this request. 4715 * @param int$eraser_key The key (slug) of the eraser that provided this data.4719 * @param string $eraser_key The key (slug) of the eraser that provided this data. 4716 4720 */ 4717 4721 $response = apply_filters( 'wp_privacy_personal_data_erasure_page', $response, $eraser_index, $email_address, $page, $request_id, $eraser_key );
Note: See TracChangeset
for help on using the changeset viewer.