author | ymh <ymh.work@gmail.com> |
Thu, 29 Sep 2022 08:06:27 +0200 | |
changeset 20 | 7b1b88e27a20 |
parent 19 | 3d72ae0968f4 |
child 21 | 48c4eec2b7e6 |
permissions | -rw-r--r-- |
0 | 1 |
<?php |
2 |
/** |
|
3 |
* Edit Comments Administration Screen. |
|
4 |
* |
|
5 |
* @package WordPress |
|
6 |
* @subpackage Administration |
|
7 |
*/ |
|
8 |
||
9 |
/** WordPress Administration Bootstrap */ |
|
16 | 10 |
require_once __DIR__ . '/admin.php'; |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
11 |
if ( ! current_user_can( 'edit_posts' ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
12 |
wp_die( |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
13 |
'<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
14 |
'<p>' . __( 'Sorry, you are not allowed to edit comments.' ) . '</p>', |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
15 |
403 |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
16 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
17 |
} |
0 | 18 |
|
9 | 19 |
$wp_list_table = _get_list_table( 'WP_Comments_List_Table' ); |
20 |
$pagenum = $wp_list_table->get_pagenum(); |
|
0 | 21 |
|
22 |
$doaction = $wp_list_table->current_action(); |
|
23 |
||
24 |
if ( $doaction ) { |
|
25 |
check_admin_referer( 'bulk-comments' ); |
|
26 |
||
16 | 27 |
if ( 'delete_all' === $doaction && ! empty( $_REQUEST['pagegen_timestamp'] ) ) { |
0 | 28 |
$comment_status = wp_unslash( $_REQUEST['comment_status'] ); |
9 | 29 |
$delete_time = wp_unslash( $_REQUEST['pagegen_timestamp'] ); |
30 |
$comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_approved = %s AND %s > comment_date_gmt", $comment_status, $delete_time ) ); |
|
31 |
$doaction = 'delete'; |
|
0 | 32 |
} elseif ( isset( $_REQUEST['delete_comments'] ) ) { |
33 |
$comment_ids = $_REQUEST['delete_comments']; |
|
18 | 34 |
$doaction = $_REQUEST['action']; |
0 | 35 |
} elseif ( isset( $_REQUEST['ids'] ) ) { |
36 |
$comment_ids = array_map( 'absint', explode( ',', $_REQUEST['ids'] ) ); |
|
37 |
} elseif ( wp_get_referer() ) { |
|
38 |
wp_safe_redirect( wp_get_referer() ); |
|
39 |
exit; |
|
40 |
} |
|
41 |
||
16 | 42 |
$approved = 0; |
43 |
$unapproved = 0; |
|
44 |
$spammed = 0; |
|
45 |
$unspammed = 0; |
|
46 |
$trashed = 0; |
|
47 |
$untrashed = 0; |
|
48 |
$deleted = 0; |
|
0 | 49 |
|
50 |
$redirect_to = remove_query_arg( array( 'trashed', 'untrashed', 'deleted', 'spammed', 'unspammed', 'approved', 'unapproved', 'ids' ), wp_get_referer() ); |
|
51 |
$redirect_to = add_query_arg( 'paged', $pagenum, $redirect_to ); |
|
52 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
53 |
wp_defer_comment_counting( true ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
54 |
|
16 | 55 |
foreach ( $comment_ids as $comment_id ) { // Check the permissions on each. |
9 | 56 |
if ( ! current_user_can( 'edit_comment', $comment_id ) ) { |
0 | 57 |
continue; |
9 | 58 |
} |
0 | 59 |
|
60 |
switch ( $doaction ) { |
|
9 | 61 |
case 'approve': |
0 | 62 |
wp_set_comment_status( $comment_id, 'approve' ); |
63 |
$approved++; |
|
64 |
break; |
|
9 | 65 |
case 'unapprove': |
0 | 66 |
wp_set_comment_status( $comment_id, 'hold' ); |
67 |
$unapproved++; |
|
68 |
break; |
|
9 | 69 |
case 'spam': |
0 | 70 |
wp_spam_comment( $comment_id ); |
71 |
$spammed++; |
|
72 |
break; |
|
9 | 73 |
case 'unspam': |
0 | 74 |
wp_unspam_comment( $comment_id ); |
75 |
$unspammed++; |
|
76 |
break; |
|
9 | 77 |
case 'trash': |
0 | 78 |
wp_trash_comment( $comment_id ); |
79 |
$trashed++; |
|
80 |
break; |
|
9 | 81 |
case 'untrash': |
0 | 82 |
wp_untrash_comment( $comment_id ); |
83 |
$untrashed++; |
|
84 |
break; |
|
9 | 85 |
case 'delete': |
0 | 86 |
wp_delete_comment( $comment_id ); |
87 |
$deleted++; |
|
88 |
break; |
|
89 |
} |
|
90 |
} |
|
91 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
92 |
if ( ! in_array( $doaction, array( 'approve', 'unapprove', 'spam', 'unspam', 'trash', 'delete' ), true ) ) { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
93 |
$screen = get_current_screen()->id; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
94 |
|
16 | 95 |
/** This action is documented in wp-admin/edit.php */ |
96 |
$redirect_to = apply_filters( "handle_bulk_actions-{$screen}", $redirect_to, $doaction, $comment_ids ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
97 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
98 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
99 |
wp_defer_comment_counting( false ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
100 |
|
9 | 101 |
if ( $approved ) { |
0 | 102 |
$redirect_to = add_query_arg( 'approved', $approved, $redirect_to ); |
9 | 103 |
} |
104 |
if ( $unapproved ) { |
|
0 | 105 |
$redirect_to = add_query_arg( 'unapproved', $unapproved, $redirect_to ); |
9 | 106 |
} |
107 |
if ( $spammed ) { |
|
0 | 108 |
$redirect_to = add_query_arg( 'spammed', $spammed, $redirect_to ); |
9 | 109 |
} |
110 |
if ( $unspammed ) { |
|
0 | 111 |
$redirect_to = add_query_arg( 'unspammed', $unspammed, $redirect_to ); |
9 | 112 |
} |
113 |
if ( $trashed ) { |
|
0 | 114 |
$redirect_to = add_query_arg( 'trashed', $trashed, $redirect_to ); |
9 | 115 |
} |
116 |
if ( $untrashed ) { |
|
0 | 117 |
$redirect_to = add_query_arg( 'untrashed', $untrashed, $redirect_to ); |
9 | 118 |
} |
119 |
if ( $deleted ) { |
|
0 | 120 |
$redirect_to = add_query_arg( 'deleted', $deleted, $redirect_to ); |
9 | 121 |
} |
122 |
if ( $trashed || $spammed ) { |
|
18 | 123 |
$redirect_to = add_query_arg( 'ids', implode( ',', $comment_ids ), $redirect_to ); |
9 | 124 |
} |
0 | 125 |
|
126 |
wp_safe_redirect( $redirect_to ); |
|
127 |
exit; |
|
128 |
} elseif ( ! empty( $_GET['_wp_http_referer'] ) ) { |
|
9 | 129 |
wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); |
130 |
exit; |
|
0 | 131 |
} |
132 |
||
133 |
$wp_list_table->prepare_items(); |
|
134 |
||
9 | 135 |
wp_enqueue_script( 'admin-comments' ); |
0 | 136 |
enqueue_comment_hotkeys_js(); |
137 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
138 |
if ( $post_id ) { |
9 | 139 |
$comments_count = wp_count_comments( $post_id ); |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
140 |
$draft_or_post_title = wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '…' ); |
19 | 141 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
142 |
if ( $comments_count->moderated > 0 ) { |
19 | 143 |
// Used in the HTML title tag. |
9 | 144 |
$title = sprintf( |
16 | 145 |
/* translators: 1: Comments count, 2: Post title. */ |
9 | 146 |
__( 'Comments (%1$s) on “%2$s”' ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
147 |
number_format_i18n( $comments_count->moderated ), |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
148 |
$draft_or_post_title |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
149 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
150 |
} else { |
19 | 151 |
// Used in the HTML title tag. |
9 | 152 |
$title = sprintf( |
16 | 153 |
/* translators: %s: Post title. */ |
9 | 154 |
__( 'Comments on “%s”' ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
155 |
$draft_or_post_title |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
156 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
157 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
158 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
159 |
$comments_count = wp_count_comments(); |
19 | 160 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
161 |
if ( $comments_count->moderated > 0 ) { |
19 | 162 |
// Used in the HTML title tag. |
9 | 163 |
$title = sprintf( |
16 | 164 |
/* translators: %s: Comments count. */ |
9 | 165 |
__( 'Comments (%s)' ), |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
166 |
number_format_i18n( $comments_count->moderated ) |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
167 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
168 |
} else { |
19 | 169 |
// Used in the HTML title tag. |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
170 |
$title = __( 'Comments' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
171 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
172 |
} |
0 | 173 |
|
5 | 174 |
add_screen_option( 'per_page' ); |
0 | 175 |
|
9 | 176 |
get_current_screen()->add_help_tab( |
177 |
array( |
|
178 |
'id' => 'overview', |
|
179 |
'title' => __( 'Overview' ), |
|
180 |
'content' => |
|
16 | 181 |
'<p>' . __( 'You can manage comments made on your site similar to the way you manage posts and other content. This screen is customizable in the same ways as other management screens, and you can act on comments using the on-hover action links or the bulk actions.' ) . '</p>', |
9 | 182 |
) |
183 |
); |
|
184 |
get_current_screen()->add_help_tab( |
|
185 |
array( |
|
186 |
'id' => 'moderating-comments', |
|
187 |
'title' => __( 'Moderating Comments' ), |
|
188 |
'content' => |
|
16 | 189 |
'<p>' . __( 'A red bar on the left means the comment is waiting for you to moderate it.' ) . '</p>' . |
190 |
'<p>' . __( 'In the <strong>Author</strong> column, in addition to the author’s name, email address, and blog URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' . |
|
191 |
'<p>' . __( 'In the <strong>Comment</strong> column, hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' . |
|
192 |
'<p>' . __( 'In the <strong>In response to</strong> column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The View Post link leads to that post on your live site. The small bubble with the number in it shows the number of approved comments that post has received. If there are pending comments, a red notification circle with the number of pending comments is displayed. Clicking the notification circle will filter the comments screen to show only pending comments on that post.' ) . '</p>' . |
|
193 |
'<p>' . __( 'In the <strong>Submitted on</strong> column, the date and time the comment was left on your site appears. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' . |
|
194 |
'<p>' . __( 'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link to the side to learn more.' ) . '</p>', |
|
9 | 195 |
) |
196 |
); |
|
0 | 197 |
|
198 |
get_current_screen()->set_help_sidebar( |
|
199 |
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' . |
|
16 | 200 |
'<p>' . __( '<a href="https://wordpress.org/support/article/comments-screen/">Documentation on Comments</a>' ) . '</p>' . |
201 |
'<p>' . __( '<a href="https://wordpress.org/support/article/comment-spam/">Documentation on Comment Spam</a>' ) . '</p>' . |
|
202 |
'<p>' . __( '<a href="https://wordpress.org/support/article/keyboard-shortcuts/">Documentation on Keyboard Shortcuts</a>' ) . '</p>' . |
|
9 | 203 |
'<p>' . __( '<a href="https://wordpress.org/support/">Support</a>' ) . '</p>' |
0 | 204 |
); |
205 |
||
9 | 206 |
get_current_screen()->set_screen_reader_content( |
207 |
array( |
|
208 |
'heading_views' => __( 'Filter comments list' ), |
|
209 |
'heading_pagination' => __( 'Comments list navigation' ), |
|
210 |
'heading_list' => __( 'Comments list' ), |
|
211 |
) |
|
212 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
213 |
|
16 | 214 |
require_once ABSPATH . 'wp-admin/admin-header.php'; |
0 | 215 |
?> |
216 |
||
217 |
<div class="wrap"> |
|
9 | 218 |
<h1 class="wp-heading-inline"> |
219 |
<?php |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
220 |
if ( $post_id ) { |
9 | 221 |
printf( |
16 | 222 |
/* translators: %s: Link to post. */ |
9 | 223 |
__( 'Comments on “%s”' ), |
224 |
sprintf( |
|
225 |
'<a href="%1$s">%2$s</a>', |
|
0 | 226 |
get_edit_post_link( $post_id ), |
227 |
wp_html_excerpt( _draft_or_post_title( $post_id ), 50, '…' ) |
|
228 |
) |
|
229 |
); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
230 |
} else { |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
231 |
_e( 'Comments' ); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
232 |
} |
9 | 233 |
?> |
234 |
</h1> |
|
0 | 235 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
236 |
<?php |
18 | 237 |
if ( $post_id ) { |
238 |
$post_type_object = get_post_type_object( get_post_type( $post_id ) ); |
|
239 |
||
240 |
if ( $post_type_object ) { |
|
241 |
printf( |
|
242 |
'<a href="%1$s" class="comments-view-item-link">%2$s</a>', |
|
243 |
get_permalink( $post_id ), |
|
244 |
$post_type_object->labels->view_item |
|
245 |
); |
|
246 |
} |
|
247 |
} |
|
248 |
||
9 | 249 |
if ( isset( $_REQUEST['s'] ) && strlen( $_REQUEST['s'] ) ) { |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
250 |
echo '<span class="subtitle">'; |
9 | 251 |
printf( |
16 | 252 |
/* translators: %s: Search query. */ |
18 | 253 |
__( 'Search results for: %s' ), |
19 | 254 |
'<strong>' . esc_html( wp_unslash( $_REQUEST['s'] ) ) . '</strong>' |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
255 |
); |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
256 |
echo '</span>'; |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
257 |
} |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
258 |
?> |
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
259 |
|
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
260 |
<hr class="wp-header-end"> |
0 | 261 |
|
262 |
<?php |
|
263 |
if ( isset( $_REQUEST['error'] ) ) { |
|
9 | 264 |
$error = (int) $_REQUEST['error']; |
0 | 265 |
$error_msg = ''; |
266 |
switch ( $error ) { |
|
9 | 267 |
case 1: |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
268 |
$error_msg = __( 'Invalid comment ID.' ); |
0 | 269 |
break; |
9 | 270 |
case 2: |
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
271 |
$error_msg = __( 'Sorry, you are not allowed to edit comments on this post.' ); |
0 | 272 |
break; |
273 |
} |
|
9 | 274 |
if ( $error_msg ) { |
0 | 275 |
echo '<div id="moderated" class="error"><p>' . $error_msg . '</p></div>'; |
9 | 276 |
} |
0 | 277 |
} |
278 |
||
9 | 279 |
if ( isset( $_REQUEST['approved'] ) || isset( $_REQUEST['deleted'] ) || isset( $_REQUEST['trashed'] ) || isset( $_REQUEST['untrashed'] ) || isset( $_REQUEST['spammed'] ) || isset( $_REQUEST['unspammed'] ) || isset( $_REQUEST['same'] ) ) { |
280 |
$approved = isset( $_REQUEST['approved'] ) ? (int) $_REQUEST['approved'] : 0; |
|
281 |
$deleted = isset( $_REQUEST['deleted'] ) ? (int) $_REQUEST['deleted'] : 0; |
|
282 |
$trashed = isset( $_REQUEST['trashed'] ) ? (int) $_REQUEST['trashed'] : 0; |
|
0 | 283 |
$untrashed = isset( $_REQUEST['untrashed'] ) ? (int) $_REQUEST['untrashed'] : 0; |
9 | 284 |
$spammed = isset( $_REQUEST['spammed'] ) ? (int) $_REQUEST['spammed'] : 0; |
0 | 285 |
$unspammed = isset( $_REQUEST['unspammed'] ) ? (int) $_REQUEST['unspammed'] : 0; |
9 | 286 |
$same = isset( $_REQUEST['same'] ) ? (int) $_REQUEST['same'] : 0; |
0 | 287 |
|
288 |
if ( $approved > 0 || $deleted > 0 || $trashed > 0 || $untrashed > 0 || $spammed > 0 || $unspammed > 0 || $same > 0 ) { |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
289 |
if ( $approved > 0 ) { |
16 | 290 |
/* translators: %s: Number of comments. */ |
291 |
$messages[] = sprintf( _n( '%s comment approved.', '%s comments approved.', $approved ), $approved ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
292 |
} |
0 | 293 |
|
294 |
if ( $spammed > 0 ) { |
|
9 | 295 |
$ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0; |
16 | 296 |
/* translators: %s: Number of comments. */ |
9 | 297 |
$messages[] = sprintf( _n( '%s comment marked as spam.', '%s comments marked as spam.', $spammed ), $spammed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=unspam&ids=$ids", 'bulk-comments' ) ) . '">' . __( 'Undo' ) . '</a><br />'; |
0 | 298 |
} |
299 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
300 |
if ( $unspammed > 0 ) { |
16 | 301 |
/* translators: %s: Number of comments. */ |
302 |
$messages[] = sprintf( _n( '%s comment restored from the spam.', '%s comments restored from the spam.', $unspammed ), $unspammed ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
303 |
} |
0 | 304 |
|
305 |
if ( $trashed > 0 ) { |
|
9 | 306 |
$ids = isset( $_REQUEST['ids'] ) ? $_REQUEST['ids'] : 0; |
16 | 307 |
/* translators: %s: Number of comments. */ |
9 | 308 |
$messages[] = sprintf( _n( '%s comment moved to the Trash.', '%s comments moved to the Trash.', $trashed ), $trashed ) . ' <a href="' . esc_url( wp_nonce_url( "edit-comments.php?doaction=undo&action=untrash&ids=$ids", 'bulk-comments' ) ) . '">' . __( 'Undo' ) . '</a><br />'; |
0 | 309 |
} |
310 |
||
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
311 |
if ( $untrashed > 0 ) { |
16 | 312 |
/* translators: %s: Number of comments. */ |
313 |
$messages[] = sprintf( _n( '%s comment restored from the Trash.', '%s comments restored from the Trash.', $untrashed ), $untrashed ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
314 |
} |
0 | 315 |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
316 |
if ( $deleted > 0 ) { |
16 | 317 |
/* translators: %s: Number of comments. */ |
318 |
$messages[] = sprintf( _n( '%s comment permanently deleted.', '%s comments permanently deleted.', $deleted ), $deleted ); |
|
7
cf61fcea0001
resynchronize code repo with production
ymh <ymh.work@gmail.com>
parents:
5
diff
changeset
|
319 |
} |
0 | 320 |
|
16 | 321 |
if ( $same > 0 ) { |
322 |
$comment = get_comment( $same ); |
|
323 |
if ( $comment ) { |
|
324 |
switch ( $comment->comment_approved ) { |
|
325 |
case '1': |
|
326 |
$messages[] = __( 'This comment is already approved.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>'; |
|
327 |
break; |
|
328 |
case 'trash': |
|
329 |
$messages[] = __( 'This comment is already in the Trash.' ) . ' <a href="' . esc_url( admin_url( 'edit-comments.php?comment_status=trash' ) ) . '"> ' . __( 'View Trash' ) . '</a>'; |
|
330 |
break; |
|
331 |
case 'spam': |
|
332 |
$messages[] = __( 'This comment is already marked as spam.' ) . ' <a href="' . esc_url( admin_url( "comment.php?action=editcomment&c=$same" ) ) . '">' . __( 'Edit comment' ) . '</a>'; |
|
333 |
break; |
|
334 |
} |
|
0 | 335 |
} |
336 |
} |
|
337 |
||
5 | 338 |
echo '<div id="moderated" class="updated notice is-dismissible"><p>' . implode( "<br/>\n", $messages ) . '</p></div>'; |
0 | 339 |
} |
340 |
} |
|
341 |
?> |
|
342 |
||
343 |
<?php $wp_list_table->views(); ?> |
|
344 |
||
5 | 345 |
<form id="comments-form" method="get"> |
0 | 346 |
|
347 |
<?php $wp_list_table->search_box( __( 'Search Comments' ), 'comment' ); ?> |
|
348 |
||
349 |
<?php if ( $post_id ) : ?> |
|
18 | 350 |
<input type="hidden" name="p" value="<?php echo esc_attr( (int) $post_id ); ?>" /> |
0 | 351 |
<?php endif; ?> |
9 | 352 |
<input type="hidden" name="comment_status" value="<?php echo esc_attr( $comment_status ); ?>" /> |
353 |
<input type="hidden" name="pagegen_timestamp" value="<?php echo esc_attr( current_time( 'mysql', 1 ) ); ?>" /> |
|
0 | 354 |
|
9 | 355 |
<input type="hidden" name="_total" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg( 'total_items' ) ); ?>" /> |
356 |
<input type="hidden" name="_per_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg( 'per_page' ) ); ?>" /> |
|
357 |
<input type="hidden" name="_page" value="<?php echo esc_attr( $wp_list_table->get_pagination_arg( 'page' ) ); ?>" /> |
|
0 | 358 |
|
9 | 359 |
<?php if ( isset( $_REQUEST['paged'] ) ) { ?> |
0 | 360 |
<input type="hidden" name="paged" value="<?php echo esc_attr( absint( $_REQUEST['paged'] ) ); ?>" /> |
361 |
<?php } ?> |
|
362 |
||
363 |
<?php $wp_list_table->display(); ?> |
|
364 |
</form> |
|
365 |
</div> |
|
366 |
||
367 |
<div id="ajax-response"></div> |
|
368 |
||
369 |
<?php |
|
9 | 370 |
wp_comment_reply( '-1', true, 'detail' ); |
0 | 371 |
wp_comment_trashnotice(); |
16 | 372 |
require_once ABSPATH . 'wp-admin/admin-footer.php'; ?> |