Changeset 56482 for trunk/src/wp-admin/includes/ajax-actions.php
- Timestamp:
- 08/28/2023 09:51:44 PM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/ajax-actions.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r56245 r56482 4940 4940 * 4941 4941 * @type callable $callback Callable exporter function that accepts an 4942 * email address and a page and returns an array4943 * of name => value pairs of personal data.4942 * email address and a page number and returns an 4943 * array of name => value pairs of personal data. 4944 4944 * @type string $exporter_friendly_name Translated user facing friendly name for the 4945 4945 * exporter. … … 5052 5052 * @since 4.9.6 5053 5053 * 5054 * @param array $response The personal data for the given exporter and page .5054 * @param array $response The personal data for the given exporter and page number. 5055 5055 * @param int $exporter_index The index of the exporter that provided this data. 5056 5056 * @param string $email_address The email address associated with this personal data. 5057 * @param int $page The page for this response.5057 * @param int $page The page number for this response. 5058 5058 * @param int $request_id The privacy request post ID associated with this request. 5059 5059 * @param bool $send_as_email Whether the final results of the export should be emailed to the user. … … 5129 5129 * Array of personal data exporters. 5130 5130 * 5131 * @type callable $callback Callable eraser that accepts an email address and 5132 * a pageand returns an array with boolean values for5131 * @type callable $callback Callable eraser that accepts an email address and a page 5132 * number, and returns an array with boolean values for 5133 5133 * whether items were removed or retained and any messages 5134 5134 * from the eraser, as well as if additional pages are … … 5282 5282 * @since 4.9.6 5283 5283 * 5284 * @param array $response The personal data for the given exporter and page. 5284 * @param array $response { 5285 * The personal data for the given exporter and page number. 5286 * 5287 * @type bool $items_removed Whether items were actually removed or not. 5288 * @type bool $items_retained Whether items were retained or not. 5289 * @type string[] $messages An array of messages to add to the personal data export file. 5290 * @type bool $done Whether the eraser is finished or not. 5291 * } 5285 5292 * @param int $eraser_index The index of the eraser that provided this data. 5286 5293 * @param string $email_address The email address associated with this personal data. 5287 * @param int $page The page for this response.5294 * @param int $page The page number for this response. 5288 5295 * @param int $request_id The privacy request post ID associated with this request. 5289 5296 * @param string $eraser_key The key (slug) of the eraser that provided this data.
Note: See TracChangeset
for help on using the changeset viewer.