Changeset 56482 for trunk/src/wp-includes/comment.php
- Timestamp:
- 08/28/2023 09:51:44 PM (2 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-includes/comment.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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 ) {
Note: See TracChangeset
for help on using the changeset viewer.