Changeset 56482
- Timestamp:
- 08/28/2023 09:51:44 PM (16 months ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
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. -
trunk/src/wp-includes/comment.php
r56180 r56482 3685 3685 * @since 4.9.6 3686 3686 * 3687 * @param array $exporters An array of personal data exporters.3688 * @return array An array of personal data exporters.3687 * @param array[] $exporters An array of personal data exporters. 3688 * @return array[] An array of personal data exporters. 3689 3689 */ 3690 3690 function wp_register_comment_personal_data_exporter( $exporters ) { … … 3703 3703 * 3704 3704 * @param string $email_address The comment author email address. 3705 * @param int $page Comment page. 3706 * @return array An array of personal data. 3705 * @param int $page Comment page number. 3706 * @return array { 3707 * An array of personal data. 3708 * 3709 * @type array[] $data An array of personal data arrays. 3710 * @type bool $done Whether the exporter is finished. 3711 * } 3707 3712 */ 3708 3713 function wp_comments_personal_data_exporter( $email_address, $page = 1 ) { … … 3815 3820 * 3816 3821 * @param string $email_address The comment author email address. 3817 * @param int $page Comment page. 3818 * @return array 3822 * @param int $page Comment page number. 3823 * @return array { 3824 * Data removal results. 3825 * 3826 * @type bool $items_removed Whether items were actually removed. 3827 * @type bool $items_retained Whether items were retained. 3828 * @type string[] $messages An array of messages to add to the personal data export file. 3829 * @type bool $done Whether the eraser is finished. 3830 * } 3819 3831 */ 3820 3832 function wp_comments_personal_data_eraser( $email_address, $page = 1 ) { -
trunk/src/wp-includes/media.php
r56434 r56482 5360 5360 * 5361 5361 * @param string $email_address The attachment owner email address. 5362 * @param int $page Attachment page. 5363 * @return array An array of personal data. 5362 * @param int $page Attachment page number. 5363 * @return array { 5364 * An array of personal data. 5365 * 5366 * @type array[] $data An array of personal data arrays. 5367 * @type bool $done Whether the exporter is finished. 5368 * } 5364 5369 */ 5365 5370 function wp_media_personal_data_exporter( $email_address, $page = 1 ) { -
trunk/src/wp-includes/user.php
r56478 r56482 3808 3808 * 3809 3809 * @param string $email_address The user's email address. 3810 * @return array An array of personal data. 3810 * @return array { 3811 * An array of personal data. 3812 * 3813 * @type array[] $data An array of personal data arrays. 3814 * @type bool $done Whether the exporter is finished. 3815 * } 3811 3816 */ 3812 3817 function wp_user_personal_data_exporter( $email_address ) {
Note: See TracChangeset
for help on using the changeset viewer.