[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * List Table API: WP_Comments_List_Table class 4 * 5 * @package WordPress 6 * @subpackage Administration 7 * @since 3.1.0 8 */ 9 10 /** 11 * Core class used to implement displaying comments in a list table. 12 * 13 * @since 3.1.0 14 * 15 * @see WP_List_Table 16 */ 17 class WP_Comments_List_Table extends WP_List_Table { 18 19 public $checkbox = true; 20 21 public $pending_count = array(); 22 23 public $extra_items; 24 25 private $user_can; 26 27 /** 28 * Constructor. 29 * 30 * @since 3.1.0 31 * 32 * @see WP_List_Table::__construct() for more information on default arguments. 33 * 34 * @global int $post_id 35 * 36 * @param array $args An associative array of arguments. 37 */ 38 public function __construct( $args = array() ) { 39 global $post_id; 40 41 $post_id = isset( $_REQUEST['p'] ) ? absint( $_REQUEST['p'] ) : 0; 42 43 if ( get_option( 'show_avatars' ) ) { 44 add_filter( 'comment_author', array( $this, 'floated_admin_avatar' ), 10, 2 ); 45 } 46 47 parent::__construct( 48 array( 49 'plural' => 'comments', 50 'singular' => 'comment', 51 'ajax' => true, 52 'screen' => isset( $args['screen'] ) ? $args['screen'] : null, 53 ) 54 ); 55 } 56 57 /** 58 * Adds avatars to comment author names. 59 * 60 * @since 3.1.0 61 * 62 * @param string $name Comment author name. 63 * @param int $comment_id Comment ID. 64 * @return string Avatar with the user name. 65 */ 66 public function floated_admin_avatar( $name, $comment_id ) { 67 $comment = get_comment( $comment_id ); 68 $avatar = get_avatar( $comment, 32, 'mystery' ); 69 return "$avatar $name"; 70 } 71 72 /** 73 * @return bool 74 */ 75 public function ajax_user_can() { 76 return current_user_can( 'edit_posts' ); 77 } 78 79 /** 80 * @global string $mode List table view mode. 81 * @global int $post_id 82 * @global string $comment_status 83 * @global string $comment_type 84 * @global string $search 85 */ 86 public function prepare_items() { 87 global $mode, $post_id, $comment_status, $comment_type, $search; 88 89 if ( ! empty( $_REQUEST['mode'] ) ) { 90 $mode = 'excerpt' === $_REQUEST['mode'] ? 'excerpt' : 'list'; 91 set_user_setting( 'posts_list_mode', $mode ); 92 } else { 93 $mode = get_user_setting( 'posts_list_mode', 'list' ); 94 } 95 96 $comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all'; 97 98 if ( ! in_array( $comment_status, array( 'all', 'mine', 'moderated', 'approved', 'spam', 'trash' ), true ) ) { 99 $comment_status = 'all'; 100 } 101 102 $comment_type = ! empty( $_REQUEST['comment_type'] ) ? $_REQUEST['comment_type'] : ''; 103 104 $search = ( isset( $_REQUEST['s'] ) ) ? $_REQUEST['s'] : ''; 105 106 $post_type = ( isset( $_REQUEST['post_type'] ) ) ? sanitize_key( $_REQUEST['post_type'] ) : ''; 107 108 $user_id = ( isset( $_REQUEST['user_id'] ) ) ? $_REQUEST['user_id'] : ''; 109 110 $orderby = ( isset( $_REQUEST['orderby'] ) ) ? $_REQUEST['orderby'] : ''; 111 $order = ( isset( $_REQUEST['order'] ) ) ? $_REQUEST['order'] : ''; 112 113 $comments_per_page = $this->get_per_page( $comment_status ); 114 115 $doing_ajax = wp_doing_ajax(); 116 117 if ( isset( $_REQUEST['number'] ) ) { 118 $number = (int) $_REQUEST['number']; 119 } else { 120 $number = $comments_per_page + min( 8, $comments_per_page ); // Grab a few extra. 121 } 122 123 $page = $this->get_pagenum(); 124 125 if ( isset( $_REQUEST['start'] ) ) { 126 $start = $_REQUEST['start']; 127 } else { 128 $start = ( $page - 1 ) * $comments_per_page; 129 } 130 131 if ( $doing_ajax && isset( $_REQUEST['offset'] ) ) { 132 $start += $_REQUEST['offset']; 133 } 134 135 $status_map = array( 136 'mine' => '', 137 'moderated' => 'hold', 138 'approved' => 'approve', 139 'all' => '', 140 ); 141 142 $args = array( 143 'status' => isset( $status_map[ $comment_status ] ) ? $status_map[ $comment_status ] : $comment_status, 144 'search' => $search, 145 'user_id' => $user_id, 146 'offset' => $start, 147 'number' => $number, 148 'post_id' => $post_id, 149 'type' => $comment_type, 150 'orderby' => $orderby, 151 'order' => $order, 152 'post_type' => $post_type, 153 'update_comment_post_cache' => true, 154 ); 155 156 /** 157 * Filters the arguments for the comment query in the comments list table. 158 * 159 * @since 5.1.0 160 * 161 * @param array $args An array of get_comments() arguments. 162 */ 163 $args = apply_filters( 'comments_list_table_query_args', $args ); 164 165 $_comments = get_comments( $args ); 166 167 if ( is_array( $_comments ) ) { 168 $this->items = array_slice( $_comments, 0, $comments_per_page ); 169 $this->extra_items = array_slice( $_comments, $comments_per_page ); 170 171 $_comment_post_ids = array_unique( wp_list_pluck( $_comments, 'comment_post_ID' ) ); 172 173 $this->pending_count = get_pending_comments_num( $_comment_post_ids ); 174 } 175 176 $total_comments = get_comments( 177 array_merge( 178 $args, 179 array( 180 'count' => true, 181 'offset' => 0, 182 'number' => 0, 183 'orderby' => 'none', 184 ) 185 ) 186 ); 187 188 $this->set_pagination_args( 189 array( 190 'total_items' => $total_comments, 191 'per_page' => $comments_per_page, 192 ) 193 ); 194 } 195 196 /** 197 * @param string $comment_status 198 * @return int 199 */ 200 public function get_per_page( $comment_status = 'all' ) { 201 $comments_per_page = $this->get_items_per_page( 'edit_comments_per_page' ); 202 203 /** 204 * Filters the number of comments listed per page in the comments list table. 205 * 206 * @since 2.6.0 207 * 208 * @param int $comments_per_page The number of comments to list per page. 209 * @param string $comment_status The comment status name. Default 'All'. 210 */ 211 return apply_filters( 'comments_per_page', $comments_per_page, $comment_status ); 212 } 213 214 /** 215 * @global string $comment_status 216 */ 217 public function no_items() { 218 global $comment_status; 219 220 if ( 'moderated' === $comment_status ) { 221 _e( 'No comments awaiting moderation.' ); 222 } elseif ( 'trash' === $comment_status ) { 223 _e( 'No comments found in Trash.' ); 224 } else { 225 _e( 'No comments found.' ); 226 } 227 } 228 229 /** 230 * @global int $post_id 231 * @global string $comment_status 232 * @global string $comment_type 233 */ 234 protected function get_views() { 235 global $post_id, $comment_status, $comment_type; 236 237 $status_links = array(); 238 $num_comments = ( $post_id ) ? wp_count_comments( $post_id ) : wp_count_comments(); 239 240 $statuses = array( 241 /* translators: %s: Number of comments. */ 242 'all' => _nx_noop( 243 'All <span class="count">(%s)</span>', 244 'All <span class="count">(%s)</span>', 245 'comments' 246 ), // Singular not used. 247 248 /* translators: %s: Number of comments. */ 249 'mine' => _nx_noop( 250 'Mine <span class="count">(%s)</span>', 251 'Mine <span class="count">(%s)</span>', 252 'comments' 253 ), 254 255 /* translators: %s: Number of comments. */ 256 'moderated' => _nx_noop( 257 'Pending <span class="count">(%s)</span>', 258 'Pending <span class="count">(%s)</span>', 259 'comments' 260 ), 261 262 /* translators: %s: Number of comments. */ 263 'approved' => _nx_noop( 264 'Approved <span class="count">(%s)</span>', 265 'Approved <span class="count">(%s)</span>', 266 'comments' 267 ), 268 269 /* translators: %s: Number of comments. */ 270 'spam' => _nx_noop( 271 'Spam <span class="count">(%s)</span>', 272 'Spam <span class="count">(%s)</span>', 273 'comments' 274 ), 275 276 /* translators: %s: Number of comments. */ 277 'trash' => _nx_noop( 278 'Trash <span class="count">(%s)</span>', 279 'Trash <span class="count">(%s)</span>', 280 'comments' 281 ), 282 ); 283 284 if ( ! EMPTY_TRASH_DAYS ) { 285 unset( $statuses['trash'] ); 286 } 287 288 $link = admin_url( 'edit-comments.php' ); 289 290 if ( ! empty( $comment_type ) && 'all' !== $comment_type ) { 291 $link = add_query_arg( 'comment_type', $comment_type, $link ); 292 } 293 294 foreach ( $statuses as $status => $label ) { 295 if ( 'mine' === $status ) { 296 $current_user_id = get_current_user_id(); 297 $num_comments->mine = get_comments( 298 array( 299 'post_id' => $post_id ? $post_id : 0, 300 'user_id' => $current_user_id, 301 'count' => true, 302 'orderby' => 'none', 303 ) 304 ); 305 $link = add_query_arg( 'user_id', $current_user_id, $link ); 306 } else { 307 $link = remove_query_arg( 'user_id', $link ); 308 } 309 310 if ( ! isset( $num_comments->$status ) ) { 311 $num_comments->$status = 10; 312 } 313 314 $link = add_query_arg( 'comment_status', $status, $link ); 315 316 if ( $post_id ) { 317 $link = add_query_arg( 'p', absint( $post_id ), $link ); 318 } 319 320 /* 321 // I toyed with this, but decided against it. Leaving it in here in case anyone thinks it is a good idea. ~ Mark 322 if ( !empty( $_REQUEST['s'] ) ) 323 $link = add_query_arg( 's', esc_attr( wp_unslash( $_REQUEST['s'] ) ), $link ); 324 */ 325 326 $status_links[ $status ] = array( 327 'url' => esc_url( $link ), 328 'label' => sprintf( 329 translate_nooped_plural( $label, $num_comments->$status ), 330 sprintf( 331 '<span class="%s-count">%s</span>', 332 ( 'moderated' === $status ) ? 'pending' : $status, 333 number_format_i18n( $num_comments->$status ) 334 ) 335 ), 336 'current' => $status === $comment_status, 337 ); 338 } 339 340 /** 341 * Filters the comment status links. 342 * 343 * @since 2.5.0 344 * @since 5.1.0 The 'Mine' link was added. 345 * 346 * @param string[] $status_links An associative array of fully-formed comment status links. Includes 'All', 'Mine', 347 * 'Pending', 'Approved', 'Spam', and 'Trash'. 348 */ 349 return apply_filters( 'comment_status_links', $this->get_views_links( $status_links ) ); 350 } 351 352 /** 353 * @global string $comment_status 354 * 355 * @return array 356 */ 357 protected function get_bulk_actions() { 358 global $comment_status; 359 360 if ( ! current_user_can( 'moderate_comments' ) ) { 361 return array(); // Return an empty array if the user doesn't have permission 362 } 363 364 $actions = array(); 365 366 if ( in_array( $comment_status, array( 'all', 'approved' ), true ) ) { 367 $actions['unapprove'] = __( 'Unapprove' ); 368 } 369 370 if ( in_array( $comment_status, array( 'all', 'moderated' ), true ) ) { 371 $actions['approve'] = __( 'Approve' ); 372 } 373 374 if ( in_array( $comment_status, array( 'all', 'moderated', 'approved', 'trash' ), true ) ) { 375 $actions['spam'] = _x( 'Mark as spam', 'comment' ); 376 } 377 378 if ( 'trash' === $comment_status ) { 379 $actions['untrash'] = __( 'Restore' ); 380 } elseif ( 'spam' === $comment_status ) { 381 $actions['unspam'] = _x( 'Not spam', 'comment' ); 382 } 383 384 if ( in_array( $comment_status, array( 'trash', 'spam' ), true ) || ! EMPTY_TRASH_DAYS ) { 385 $actions['delete'] = __( 'Delete permanently' ); 386 } else { 387 $actions['trash'] = __( 'Move to Trash' ); 388 } 389 390 return $actions; 391 } 392 393 /** 394 * @global string $comment_status 395 * @global string $comment_type 396 * 397 * @param string $which 398 */ 399 protected function extra_tablenav( $which ) { 400 global $comment_status, $comment_type; 401 static $has_items; 402 403 if ( ! isset( $has_items ) ) { 404 $has_items = $this->has_items(); 405 } 406 407 echo '<div class="alignleft actions">'; 408 409 if ( 'top' === $which ) { 410 ob_start(); 411 412 $this->comment_type_dropdown( $comment_type ); 413 414 /** 415 * Fires just before the Filter submit button for comment types. 416 * 417 * @since 3.5.0 418 */ 419 do_action( 'restrict_manage_comments' ); 420 421 $output = ob_get_clean(); 422 423 if ( ! empty( $output ) && $this->has_items() ) { 424 echo $output; 425 submit_button( __( 'Filter' ), '', 'filter_action', false, array( 'id' => 'post-query-submit' ) ); 426 } 427 } 428 429 if ( ( 'spam' === $comment_status || 'trash' === $comment_status ) && $has_items 430 && current_user_can( 'moderate_comments' ) 431 ) { 432 wp_nonce_field( 'bulk-destroy', '_destroy_nonce' ); 433 $title = ( 'spam' === $comment_status ) ? esc_attr__( 'Empty Spam' ) : esc_attr__( 'Empty Trash' ); 434 submit_button( $title, 'apply', 'delete_all', false ); 435 } 436 437 /** 438 * Fires after the Filter submit button for comment types. 439 * 440 * @since 2.5.0 441 * @since 5.6.0 The `$which` parameter was added. 442 * 443 * @param string $comment_status The comment status name. Default 'All'. 444 * @param string $which The location of the extra table nav markup: Either 'top' or 'bottom'. 445 */ 446 do_action( 'manage_comments_nav', $comment_status, $which ); 447 448 echo '</div>'; 449 } 450 451 /** 452 * @return string|false 453 */ 454 public function current_action() { 455 if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) { 456 return 'delete_all'; 457 } 458 459 return parent::current_action(); 460 } 461 462 /** 463 * @global int $post_id 464 * 465 * @return string[] Array of column titles keyed by their column name. 466 */ 467 public function get_columns() { 468 global $post_id; 469 470 $columns = array(); 471 472 if ( $this->checkbox ) { 473 $columns['cb'] = '<input type="checkbox" />'; 474 } 475 476 $columns['author'] = __( 'Author' ); 477 $columns['comment'] = _x( 'Comment', 'column name' ); 478 479 if ( ! $post_id ) { 480 /* translators: Column name or table row header. */ 481 $columns['response'] = __( 'In response to' ); 482 } 483 484 $columns['date'] = _x( 'Submitted on', 'column name' ); 485 486 return $columns; 487 } 488 489 /** 490 * Displays a comment type drop-down for filtering on the Comments list table. 491 * 492 * @since 5.5.0 493 * @since 5.6.0 Renamed from `comment_status_dropdown()` to `comment_type_dropdown()`. 494 * 495 * @param string $comment_type The current comment type slug. 496 */ 497 protected function comment_type_dropdown( $comment_type ) { 498 /** 499 * Filters the comment types shown in the drop-down menu on the Comments list table. 500 * 501 * @since 2.7.0 502 * 503 * @param string[] $comment_types Array of comment type labels keyed by their name. 504 */ 505 $comment_types = apply_filters( 506 'admin_comment_types_dropdown', 507 array( 508 'comment' => __( 'Comments' ), 509 'pings' => __( 'Pings' ), 510 ) 511 ); 512 513 if ( $comment_types && is_array( $comment_types ) ) { 514 printf( 515 '<label class="screen-reader-text" for="filter-by-comment-type">%s</label>', 516 /* translators: Hidden accessibility text. */ 517 __( 'Filter by comment type' ) 518 ); 519 520 echo '<select id="filter-by-comment-type" name="comment_type">'; 521 522 printf( "\t<option value=''>%s</option>", __( 'All comment types' ) ); 523 524 foreach ( $comment_types as $type => $label ) { 525 if ( get_comments( 526 array( 527 'count' => true, 528 'orderby' => 'none', 529 'type' => $type, 530 ) 531 ) ) { 532 printf( 533 "\t<option value='%s'%s>%s</option>\n", 534 esc_attr( $type ), 535 selected( $comment_type, $type, false ), 536 esc_html( $label ) 537 ); 538 } 539 } 540 541 echo '</select>'; 542 } 543 } 544 545 /** 546 * @return array 547 */ 548 protected function get_sortable_columns() { 549 return array( 550 'author' => array( 'comment_author', false, __( 'Author' ), __( 'Table ordered by Comment Author.' ) ), 551 'response' => array( 'comment_post_ID', false, _x( 'In Response To', 'column name' ), __( 'Table ordered by Post Replied To.' ) ), 552 'date' => 'comment_date', 553 ); 554 } 555 556 /** 557 * Gets the name of the default primary column. 558 * 559 * @since 4.3.0 560 * 561 * @return string Name of the default primary column, in this case, 'comment'. 562 */ 563 protected function get_default_primary_column_name() { 564 return 'comment'; 565 } 566 567 /** 568 * Displays the comments table. 569 * 570 * Overrides the parent display() method to render extra comments. 571 * 572 * @since 3.1.0 573 */ 574 public function display() { 575 wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' ); 576 static $has_items; 577 578 if ( ! isset( $has_items ) ) { 579 $has_items = $this->has_items(); 580 581 if ( $has_items ) { 582 $this->display_tablenav( 'top' ); 583 } 584 } 585 586 $this->screen->render_screen_reader_content( 'heading_list' ); 587 588 ?> 589 <table class="wp-list-table <?php echo implode( ' ', $this->get_table_classes() ); ?>"> 590 <?php 591 if ( ! isset( $_GET['orderby'] ) ) { 592 // In the initial view, Comments are ordered by comment's date but there's no column for that. 593 echo '<caption class="screen-reader-text">' . 594 /* translators: Hidden accessibility text. */ 595 __( 'Ordered by Comment Date, descending.' ) . 596 '</caption>'; 597 } else { 598 $this->print_table_description(); 599 } 600 ?> 601 <thead> 602 <tr> 603 <?php $this->print_column_headers(); ?> 604 </tr> 605 </thead> 606 607 <tbody id="the-comment-list" data-wp-lists="list:comment"> 608 <?php $this->display_rows_or_placeholder(); ?> 609 </tbody> 610 611 <tbody id="the-extra-comment-list" data-wp-lists="list:comment" style="display: none;"> 612 <?php 613 /* 614 * Back up the items to restore after printing the extra items markup. 615 * The extra items may be empty, which will prevent the table nav from displaying later. 616 */ 617 $items = $this->items; 618 $this->items = $this->extra_items; 619 $this->display_rows_or_placeholder(); 620 $this->items = $items; 621 ?> 622 </tbody> 623 624 <tfoot> 625 <tr> 626 <?php $this->print_column_headers( false ); ?> 627 </tr> 628 </tfoot> 629 630 </table> 631 <?php 632 633 $this->display_tablenav( 'bottom' ); 634 } 635 636 /** 637 * @global WP_Post $post Global post object. 638 * @global WP_Comment $comment Global comment object. 639 * 640 * @param WP_Comment $item 641 */ 642 public function single_row( $item ) { 643 global $post, $comment; 644 645 // Restores the more descriptive, specific name for use within this method. 646 $comment = $item; 647 648 if ( $comment->comment_post_ID > 0 ) { 649 $post = get_post( $comment->comment_post_ID ); 650 } 651 652 $edit_post_cap = $post ? 'edit_post' : 'edit_posts'; 653 654 if ( ! current_user_can( $edit_post_cap, $comment->comment_post_ID ) 655 && ( post_password_required( $comment->comment_post_ID ) 656 || ! current_user_can( 'read_post', $comment->comment_post_ID ) ) 657 ) { 658 // The user has no access to the post and thus cannot see the comments. 659 return false; 660 } 661 662 $the_comment_class = wp_get_comment_status( $comment ); 663 664 if ( ! $the_comment_class ) { 665 $the_comment_class = ''; 666 } 667 668 $the_comment_class = implode( ' ', get_comment_class( $the_comment_class, $comment, $comment->comment_post_ID ) ); 669 670 $this->user_can = current_user_can( 'edit_comment', $comment->comment_ID ); 671 672 echo "<tr id='comment-$comment->comment_ID' class='$the_comment_class'>"; 673 $this->single_row_columns( $comment ); 674 echo "</tr>\n"; 675 676 unset( $GLOBALS['post'], $GLOBALS['comment'] ); 677 } 678 679 /** 680 * Generates and displays row actions links. 681 * 682 * @since 4.3.0 683 * @since 5.9.0 Renamed `$comment` to `$item` to match parent class for PHP 8 named parameter support. 684 * 685 * @global string $comment_status Status for the current listed comments. 686 * 687 * @param WP_Comment $item The comment object. 688 * @param string $column_name Current column name. 689 * @param string $primary Primary column name. 690 * @return string Row actions output for comments. An empty string 691 * if the current column is not the primary column, 692 * or if the current user cannot edit the comment. 693 */ 694 protected function handle_row_actions( $item, $column_name, $primary ) { 695 global $comment_status; 696 697 if ( $primary !== $column_name ) { 698 return ''; 699 } 700 701 if ( ! $this->user_can ) { 702 return ''; 703 } 704 705 // Restores the more descriptive, specific name for use within this method. 706 $comment = $item; 707 708 $the_comment_status = wp_get_comment_status( $comment ); 709 710 $output = ''; 711 712 $approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( 'approve-comment_' . $comment->comment_ID ) ); 713 $del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( 'delete-comment_' . $comment->comment_ID ) ); 714 715 $action_string = 'comment.php?action=%s&c=' . $comment->comment_ID . '&%s'; 716 717 $approve_url = sprintf( $action_string, 'approvecomment', $approve_nonce ); 718 $unapprove_url = sprintf( $action_string, 'unapprovecomment', $approve_nonce ); 719 $spam_url = sprintf( $action_string, 'spamcomment', $del_nonce ); 720 $unspam_url = sprintf( $action_string, 'unspamcomment', $del_nonce ); 721 $trash_url = sprintf( $action_string, 'trashcomment', $del_nonce ); 722 $untrash_url = sprintf( $action_string, 'untrashcomment', $del_nonce ); 723 $delete_url = sprintf( $action_string, 'deletecomment', $del_nonce ); 724 725 // Preorder it: Approve | Reply | Quick Edit | Edit | Spam | Trash. 726 $actions = array( 727 'approve' => '', 728 'unapprove' => '', 729 'reply' => '', 730 'quickedit' => '', 731 'edit' => '', 732 'spam' => '', 733 'unspam' => '', 734 'trash' => '', 735 'untrash' => '', 736 'delete' => '', 737 ); 738 739 // Not looking at all comments. 740 if ( $comment_status && 'all' !== $comment_status ) { 741 if ( 'approved' === $the_comment_status ) { 742 $actions['unapprove'] = sprintf( 743 '<a href="%s" data-wp-lists="%s" class="vim-u vim-destructive aria-button-if-js" aria-label="%s">%s</a>', 744 esc_url( $unapprove_url ), 745 "delete:the-comment-list:comment-{$comment->comment_ID}:e7e7d3:action=dim-comment&new=unapproved", 746 esc_attr__( 'Unapprove this comment' ), 747 __( 'Unapprove' ) 748 ); 749 } elseif ( 'unapproved' === $the_comment_status ) { 750 $actions['approve'] = sprintf( 751 '<a href="%s" data-wp-lists="%s" class="vim-a vim-destructive aria-button-if-js" aria-label="%s">%s</a>', 752 esc_url( $approve_url ), 753 "delete:the-comment-list:comment-{$comment->comment_ID}:e7e7d3:action=dim-comment&new=approved", 754 esc_attr__( 'Approve this comment' ), 755 __( 'Approve' ) 756 ); 757 } 758 } else { 759 $actions['approve'] = sprintf( 760 '<a href="%s" data-wp-lists="%s" class="vim-a aria-button-if-js" aria-label="%s">%s</a>', 761 esc_url( $approve_url ), 762 "dim:the-comment-list:comment-{$comment->comment_ID}:unapproved:e7e7d3:e7e7d3:new=approved", 763 esc_attr__( 'Approve this comment' ), 764 __( 'Approve' ) 765 ); 766 767 $actions['unapprove'] = sprintf( 768 '<a href="%s" data-wp-lists="%s" class="vim-u aria-button-if-js" aria-label="%s">%s</a>', 769 esc_url( $unapprove_url ), 770 "dim:the-comment-list:comment-{$comment->comment_ID}:unapproved:e7e7d3:e7e7d3:new=unapproved", 771 esc_attr__( 'Unapprove this comment' ), 772 __( 'Unapprove' ) 773 ); 774 } 775 776 if ( 'spam' !== $the_comment_status ) { 777 $actions['spam'] = sprintf( 778 '<a href="%s" data-wp-lists="%s" class="vim-s vim-destructive aria-button-if-js" aria-label="%s">%s</a>', 779 esc_url( $spam_url ), 780 "delete:the-comment-list:comment-{$comment->comment_ID}::spam=1", 781 esc_attr__( 'Mark this comment as spam' ), 782 /* translators: "Mark as spam" link. */ 783 _x( 'Spam', 'verb' ) 784 ); 785 } elseif ( 'spam' === $the_comment_status ) { 786 $actions['unspam'] = sprintf( 787 '<a href="%s" data-wp-lists="%s" class="vim-z vim-destructive aria-button-if-js" aria-label="%s">%s</a>', 788 esc_url( $unspam_url ), 789 "delete:the-comment-list:comment-{$comment->comment_ID}:66cc66:unspam=1", 790 esc_attr__( 'Restore this comment from the spam' ), 791 _x( 'Not Spam', 'comment' ) 792 ); 793 } 794 795 if ( 'trash' === $the_comment_status ) { 796 $actions['untrash'] = sprintf( 797 '<a href="%s" data-wp-lists="%s" class="vim-z vim-destructive aria-button-if-js" aria-label="%s">%s</a>', 798 esc_url( $untrash_url ), 799 "delete:the-comment-list:comment-{$comment->comment_ID}:66cc66:untrash=1", 800 esc_attr__( 'Restore this comment from the Trash' ), 801 __( 'Restore' ) 802 ); 803 } 804 805 if ( 'spam' === $the_comment_status || 'trash' === $the_comment_status || ! EMPTY_TRASH_DAYS ) { 806 $actions['delete'] = sprintf( 807 '<a href="%s" data-wp-lists="%s" class="delete vim-d vim-destructive aria-button-if-js" aria-label="%s">%s</a>', 808 esc_url( $delete_url ), 809 "delete:the-comment-list:comment-{$comment->comment_ID}::delete=1", 810 esc_attr__( 'Delete this comment permanently' ), 811 __( 'Delete Permanently' ) 812 ); 813 } else { 814 $actions['trash'] = sprintf( 815 '<a href="%s" data-wp-lists="%s" class="delete vim-d vim-destructive aria-button-if-js" aria-label="%s">%s</a>', 816 esc_url( $trash_url ), 817 "delete:the-comment-list:comment-{$comment->comment_ID}::trash=1", 818 esc_attr__( 'Move this comment to the Trash' ), 819 _x( 'Trash', 'verb' ) 820 ); 821 } 822 823 if ( 'spam' !== $the_comment_status && 'trash' !== $the_comment_status ) { 824 $actions['edit'] = sprintf( 825 '<a href="%s" aria-label="%s">%s</a>', 826 "comment.php?action=editcomment&c={$comment->comment_ID}", 827 esc_attr__( 'Edit this comment' ), 828 __( 'Edit' ) 829 ); 830 831 $format = '<button type="button" data-comment-id="%d" data-post-id="%d" data-action="%s" class="%s button-link" aria-expanded="false" aria-label="%s">%s</button>'; 832 833 $actions['quickedit'] = sprintf( 834 $format, 835 $comment->comment_ID, 836 $comment->comment_post_ID, 837 'edit', 838 'vim-q comment-inline', 839 esc_attr__( 'Quick edit this comment inline' ), 840 __( 'Quick Edit' ) 841 ); 842 843 $actions['reply'] = sprintf( 844 $format, 845 $comment->comment_ID, 846 $comment->comment_post_ID, 847 'replyto', 848 'vim-r comment-inline', 849 esc_attr__( 'Reply to this comment' ), 850 __( 'Reply' ) 851 ); 852 } 853 854 /** 855 * Filters the action links displayed for each comment in the Comments list table. 856 * 857 * @since 2.6.0 858 * 859 * @param string[] $actions An array of comment actions. Default actions include: 860 * 'Approve', 'Unapprove', 'Edit', 'Reply', 'Spam', 861 * 'Delete', and 'Trash'. 862 * @param WP_Comment $comment The comment object. 863 */ 864 $actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment ); 865 866 $always_visible = false; 867 868 $mode = get_user_setting( 'posts_list_mode', 'list' ); 869 870 if ( 'excerpt' === $mode ) { 871 $always_visible = true; 872 } 873 874 $output .= '<div class="' . ( $always_visible ? 'row-actions visible' : 'row-actions' ) . '">'; 875 876 $i = 0; 877 878 foreach ( $actions as $action => $link ) { 879 ++$i; 880 881 if ( ( ( 'approve' === $action || 'unapprove' === $action ) && 2 === $i ) 882 || 1 === $i 883 ) { 884 $separator = ''; 885 } else { 886 $separator = ' | '; 887 } 888 889 // Reply and quickedit need a hide-if-no-js span when not added with Ajax. 890 if ( ( 'reply' === $action || 'quickedit' === $action ) && ! wp_doing_ajax() ) { 891 $action .= ' hide-if-no-js'; 892 } elseif ( ( 'untrash' === $action && 'trash' === $the_comment_status ) 893 || ( 'unspam' === $action && 'spam' === $the_comment_status ) 894 ) { 895 if ( '1' === get_comment_meta( $comment->comment_ID, '_wp_trash_meta_status', true ) ) { 896 $action .= ' approve'; 897 } else { 898 $action .= ' unapprove'; 899 } 900 } 901 902 $output .= "<span class='$action'>{$separator}{$link}</span>"; 903 } 904 905 $output .= '</div>'; 906 907 $output .= '<button type="button" class="toggle-row"><span class="screen-reader-text">' . 908 /* translators: Hidden accessibility text. */ 909 __( 'Show more details' ) . 910 '</span></button>'; 911 912 return $output; 913 } 914 915 /** 916 * @since 5.9.0 Renamed `$comment` to `$item` to match parent class for PHP 8 named parameter support. 917 * 918 * @param WP_Comment $item The comment object. 919 */ 920 public function column_cb( $item ) { 921 // Restores the more descriptive, specific name for use within this method. 922 $comment = $item; 923 924 if ( $this->user_can ) { 925 ?> 926 <input id="cb-select-<?php echo $comment->comment_ID; ?>" type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" /> 927 <label for="cb-select-<?php echo $comment->comment_ID; ?>"> 928 <span class="screen-reader-text"> 929 <?php 930 /* translators: Hidden accessibility text. */ 931 _e( 'Select comment' ); 932 ?> 933 </span> 934 </label> 935 <?php 936 } 937 } 938 939 /** 940 * @param WP_Comment $comment The comment object. 941 */ 942 public function column_comment( $comment ) { 943 echo '<div class="comment-author">'; 944 $this->column_author( $comment ); 945 echo '</div>'; 946 947 if ( $comment->comment_parent ) { 948 $parent = get_comment( $comment->comment_parent ); 949 950 if ( $parent ) { 951 $parent_link = esc_url( get_comment_link( $parent ) ); 952 $name = get_comment_author( $parent ); 953 printf( 954 /* translators: %s: Comment link. */ 955 __( 'In reply to %s.' ), 956 '<a href="' . $parent_link . '">' . $name . '</a>' 957 ); 958 } 959 } 960 961 comment_text( $comment ); 962 963 if ( $this->user_can ) { 964 /** This filter is documented in wp-admin/includes/comment.php */ 965 $comment_content = apply_filters( 'comment_edit_pre', $comment->comment_content ); 966 ?> 967 <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden"> 968 <textarea class="comment" rows="1" cols="1"><?php echo esc_textarea( $comment_content ); ?></textarea> 969 <div class="author-email"><?php echo esc_html( $comment->comment_author_email ); ?></div> 970 <div class="author"><?php echo esc_html( $comment->comment_author ); ?></div> 971 <div class="author-url"><?php echo esc_url( $comment->comment_author_url ); ?></div> 972 <div class="comment_status"><?php echo $comment->comment_approved; ?></div> 973 </div> 974 <?php 975 } 976 } 977 978 /** 979 * @global string $comment_status 980 * 981 * @param WP_Comment $comment The comment object. 982 */ 983 public function column_author( $comment ) { 984 global $comment_status; 985 986 $author_url = get_comment_author_url( $comment ); 987 988 $author_url_display = untrailingslashit( preg_replace( '|^http(s)?://(www\.)?|i', '', $author_url ) ); 989 990 if ( strlen( $author_url_display ) > 50 ) { 991 $author_url_display = wp_html_excerpt( $author_url_display, 49, '…' ); 992 } 993 994 echo '<strong>'; 995 comment_author( $comment ); 996 echo '</strong><br />'; 997 998 if ( ! empty( $author_url_display ) ) { 999 // Print link to author URL, and disallow referrer information (without using target="_blank"). 1000 printf( 1001 '<a href="%s" rel="noopener noreferrer">%s</a><br />', 1002 esc_url( $author_url ), 1003 esc_html( $author_url_display ) 1004 ); 1005 } 1006 1007 if ( $this->user_can ) { 1008 if ( ! empty( $comment->comment_author_email ) ) { 1009 /** This filter is documented in wp-includes/comment-template.php */ 1010 $email = apply_filters( 'comment_email', $comment->comment_author_email, $comment ); 1011 1012 if ( ! empty( $email ) && '@' !== $email ) { 1013 printf( '<a href="%1$s">%2$s</a><br />', esc_url( 'mailto:' . $email ), esc_html( $email ) ); 1014 } 1015 } 1016 1017 $author_ip = get_comment_author_IP( $comment ); 1018 1019 if ( $author_ip ) { 1020 $author_ip_url = add_query_arg( 1021 array( 1022 's' => $author_ip, 1023 'mode' => 'detail', 1024 ), 1025 admin_url( 'edit-comments.php' ) 1026 ); 1027 1028 if ( 'spam' === $comment_status ) { 1029 $author_ip_url = add_query_arg( 'comment_status', 'spam', $author_ip_url ); 1030 } 1031 1032 printf( '<a href="%1$s">%2$s</a>', esc_url( $author_ip_url ), esc_html( $author_ip ) ); 1033 } 1034 } 1035 } 1036 1037 /** 1038 * @param WP_Comment $comment The comment object. 1039 */ 1040 public function column_date( $comment ) { 1041 $submitted = sprintf( 1042 /* translators: 1: Comment date, 2: Comment time. */ 1043 __( '%1$s at %2$s' ), 1044 /* translators: Comment date format. See https://www.php.net/manual/datetime.format.php */ 1045 get_comment_date( __( 'Y/m/d' ), $comment ), 1046 /* translators: Comment time format. See https://www.php.net/manual/datetime.format.php */ 1047 get_comment_date( __( 'g:i a' ), $comment ) 1048 ); 1049 1050 echo '<div class="submitted-on">'; 1051 1052 if ( 'approved' === wp_get_comment_status( $comment ) && ! empty( $comment->comment_post_ID ) ) { 1053 printf( 1054 '<a href="%s">%s</a>', 1055 esc_url( get_comment_link( $comment ) ), 1056 $submitted 1057 ); 1058 } else { 1059 echo $submitted; 1060 } 1061 1062 echo '</div>'; 1063 } 1064 1065 /** 1066 * @param WP_Comment $comment The comment object. 1067 */ 1068 public function column_response( $comment ) { 1069 $post = get_post(); 1070 1071 if ( ! $post ) { 1072 return; 1073 } 1074 1075 if ( isset( $this->pending_count[ $post->ID ] ) ) { 1076 $pending_comments = $this->pending_count[ $post->ID ]; 1077 } else { 1078 $_pending_count_temp = get_pending_comments_num( array( $post->ID ) ); 1079 $pending_comments = $_pending_count_temp[ $post->ID ]; 1080 $this->pending_count[ $post->ID ] = $pending_comments; 1081 } 1082 1083 if ( current_user_can( 'edit_post', $post->ID ) ) { 1084 $post_link = "<a href='" . get_edit_post_link( $post->ID ) . "' class='comments-edit-item-link'>"; 1085 $post_link .= esc_html( get_the_title( $post->ID ) ) . '</a>'; 1086 } else { 1087 $post_link = esc_html( get_the_title( $post->ID ) ); 1088 } 1089 1090 echo '<div class="response-links">'; 1091 1092 if ( 'attachment' === $post->post_type ) { 1093 $thumb = wp_get_attachment_image( $post->ID, array( 80, 60 ), true ); 1094 if ( $thumb ) { 1095 echo $thumb; 1096 } 1097 } 1098 1099 echo $post_link; 1100 1101 $post_type_object = get_post_type_object( $post->post_type ); 1102 echo "<a href='" . get_permalink( $post->ID ) . "' class='comments-view-item-link'>" . $post_type_object->labels->view_item . '</a>'; 1103 1104 echo '<span class="post-com-count-wrapper post-com-count-', $post->ID, '">'; 1105 $this->comments_bubble( $post->ID, $pending_comments ); 1106 echo '</span> '; 1107 1108 echo '</div>'; 1109 } 1110 1111 /** 1112 * @since 5.9.0 Renamed `$comment` to `$item` to match parent class for PHP 8 named parameter support. 1113 * 1114 * @param WP_Comment $item The comment object. 1115 * @param string $column_name The custom column's name. 1116 */ 1117 public function column_default( $item, $column_name ) { 1118 // Restores the more descriptive, specific name for use within this method. 1119 $comment = $item; 1120 1121 /** 1122 * Fires when the default column output is displayed for a single row. 1123 * 1124 * @since 2.8.0 1125 * 1126 * @param string $column_name The custom column's name. 1127 * @param string $comment_id The comment ID as a numeric string. 1128 */ 1129 do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID ); 1130 } 1131 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated : Thu Apr 3 08:20:01 2025 | Cross-referenced by PHPXref |