]> scripts.mit.edu Git - autoinstalls/wordpress.git/blob - wp-admin/includes/class-wp-comments-list-table.php
WordPress 4.1.1
[autoinstalls/wordpress.git] / wp-admin / includes / class-wp-comments-list-table.php
1 <?php
2 /**
3  * Comments and Post Comments List Table classes.
4  *
5  * @package WordPress
6  * @subpackage List_Table
7  * @since 3.1.0
8  */
9
10 /**
11  * Comments List Table class.
12  *
13  * @package WordPress
14  * @subpackage List_Table
15  * @since 3.1.0
16  * @access private
17  */
18 class WP_Comments_List_Table extends WP_List_Table {
19
20         public $checkbox = true;
21
22         public $pending_count = array();
23
24         /**
25          * Constructor.
26          *
27          * @since 3.1.0
28          * @access public
29          *
30          * @see WP_List_Table::__construct() for more information on default arguments.
31          *
32          * @param array $args An associative array of arguments.
33          */
34         public function __construct( $args = array() ) {
35                 global $post_id;
36
37                 $post_id = isset( $_REQUEST['p'] ) ? absint( $_REQUEST['p'] ) : 0;
38
39                 if ( get_option('show_avatars') )
40                         add_filter( 'comment_author', 'floated_admin_avatar' );
41
42                 parent::__construct( array(
43                         'plural' => 'comments',
44                         'singular' => 'comment',
45                         'ajax' => true,
46                         'screen' => isset( $args['screen'] ) ? $args['screen'] : null,
47                 ) );
48         }
49
50         public function ajax_user_can() {
51                 return current_user_can('edit_posts');
52         }
53
54         public function prepare_items() {
55                 global $post_id, $comment_status, $search, $comment_type;
56
57                 $comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all';
58                 if ( !in_array( $comment_status, array( 'all', 'moderated', 'approved', 'spam', 'trash' ) ) )
59                         $comment_status = 'all';
60
61                 $comment_type = !empty( $_REQUEST['comment_type'] ) ? $_REQUEST['comment_type'] : '';
62
63                 $search = ( isset( $_REQUEST['s'] ) ) ? $_REQUEST['s'] : '';
64
65                 $post_type = ( isset( $_REQUEST['post_type'] ) ) ? sanitize_key( $_REQUEST['post_type'] ) : '';
66
67                 $user_id = ( isset( $_REQUEST['user_id'] ) ) ? $_REQUEST['user_id'] : '';
68
69                 $orderby = ( isset( $_REQUEST['orderby'] ) ) ? $_REQUEST['orderby'] : '';
70                 $order = ( isset( $_REQUEST['order'] ) ) ? $_REQUEST['order'] : '';
71
72                 $comments_per_page = $this->get_per_page( $comment_status );
73
74                 $doing_ajax = defined( 'DOING_AJAX' ) && DOING_AJAX;
75
76                 if ( isset( $_REQUEST['number'] ) ) {
77                         $number = (int) $_REQUEST['number'];
78                 }
79                 else {
80                         $number = $comments_per_page + min( 8, $comments_per_page ); // Grab a few extra
81                 }
82
83                 $page = $this->get_pagenum();
84
85                 if ( isset( $_REQUEST['start'] ) ) {
86                         $start = $_REQUEST['start'];
87                 } else {
88                         $start = ( $page - 1 ) * $comments_per_page;
89                 }
90
91                 if ( $doing_ajax && isset( $_REQUEST['offset'] ) ) {
92                         $start += $_REQUEST['offset'];
93                 }
94
95                 $status_map = array(
96                         'moderated' => 'hold',
97                         'approved' => 'approve',
98                         'all' => '',
99                 );
100
101                 $args = array(
102                         'status' => isset( $status_map[$comment_status] ) ? $status_map[$comment_status] : $comment_status,
103                         'search' => $search,
104                         'user_id' => $user_id,
105                         'offset' => $start,
106                         'number' => $number,
107                         'post_id' => $post_id,
108                         'type' => $comment_type,
109                         'orderby' => $orderby,
110                         'order' => $order,
111                         'post_type' => $post_type,
112                 );
113
114                 $_comments = get_comments( $args );
115
116                 update_comment_cache( $_comments );
117
118                 $this->items = array_slice( $_comments, 0, $comments_per_page );
119                 $this->extra_items = array_slice( $_comments, $comments_per_page );
120
121                 $total_comments = get_comments( array_merge( $args, array('count' => true, 'offset' => 0, 'number' => 0) ) );
122
123                 $_comment_post_ids = array();
124                 foreach ( $_comments as $_c ) {
125                         $_comment_post_ids[] = $_c->comment_post_ID;
126                 }
127
128                 $_comment_post_ids = array_unique( $_comment_post_ids );
129
130                 $this->pending_count = get_pending_comments_num( $_comment_post_ids );
131
132                 $this->set_pagination_args( array(
133                         'total_items' => $total_comments,
134                         'per_page' => $comments_per_page,
135                 ) );
136         }
137
138         public function get_per_page( $comment_status = 'all' ) {
139                 $comments_per_page = $this->get_items_per_page( 'edit_comments_per_page' );
140                 /**
141                  * Filter the number of comments listed per page in the comments list table.
142                  *
143                  * @since 2.6.0
144                  *
145                  * @param int    $comments_per_page The number of comments to list per page.
146                  * @param string $comment_status    The comment status name. Default 'All'.
147                  */
148                 $comments_per_page = apply_filters( 'comments_per_page', $comments_per_page, $comment_status );
149                 return $comments_per_page;
150         }
151
152         public function no_items() {
153                 global $comment_status;
154
155                 if ( 'moderated' == $comment_status )
156                         _e( 'No comments awaiting moderation.' );
157                 else
158                         _e( 'No comments found.' );
159         }
160
161         protected function get_views() {
162                 global $post_id, $comment_status, $comment_type;
163
164                 $status_links = array();
165                 $num_comments = ( $post_id ) ? wp_count_comments( $post_id ) : wp_count_comments();
166                 //, number_format_i18n($num_comments->moderated) ), "<span class='comment-count'>" . number_format_i18n($num_comments->moderated) . "</span>"),
167                 //, number_format_i18n($num_comments->spam) ), "<span class='spam-comment-count'>" . number_format_i18n($num_comments->spam) . "</span>")
168                 $stati = array(
169                                 'all' => _nx_noop('All', 'All', 'comments'), // singular not used
170                                 'moderated' => _n_noop('Pending <span class="count">(<span class="pending-count">%s</span>)</span>', 'Pending <span class="count">(<span class="pending-count">%s</span>)</span>'),
171                                 'approved' => _n_noop('Approved', 'Approved'), // singular not used
172                                 'spam' => _n_noop('Spam <span class="count">(<span class="spam-count">%s</span>)</span>', 'Spam <span class="count">(<span class="spam-count">%s</span>)</span>'),
173                                 'trash' => _n_noop('Trash <span class="count">(<span class="trash-count">%s</span>)</span>', 'Trash <span class="count">(<span class="trash-count">%s</span>)</span>')
174                         );
175
176                 if ( !EMPTY_TRASH_DAYS )
177                         unset($stati['trash']);
178
179                 $link = 'edit-comments.php';
180                 if ( !empty($comment_type) && 'all' != $comment_type )
181                         $link = add_query_arg( 'comment_type', $comment_type, $link );
182
183                 foreach ( $stati as $status => $label ) {
184                         $class = ( $status == $comment_status ) ? ' class="current"' : '';
185
186                         if ( !isset( $num_comments->$status ) )
187                                 $num_comments->$status = 10;
188                         $link = add_query_arg( 'comment_status', $status, $link );
189                         if ( $post_id )
190                                 $link = add_query_arg( 'p', absint( $post_id ), $link );
191                         /*
192                         // I toyed with this, but decided against it. Leaving it in here in case anyone thinks it is a good idea. ~ Mark
193                         if ( !empty( $_REQUEST['s'] ) )
194                                 $link = add_query_arg( 's', esc_attr( wp_unslash( $_REQUEST['s'] ) ), $link );
195                         */
196                         $status_links[$status] = "<a href='$link'$class>" . sprintf(
197                                 translate_nooped_plural( $label, $num_comments->$status ),
198                                 number_format_i18n( $num_comments->$status )
199                         ) . '</a>';
200                 }
201
202                 /**
203                  * Filter the comment status links.
204                  *
205                  * @since 2.5.0
206                  *
207                  * @param array $status_links An array of fully-formed status links. Default 'All'.
208                  *                            Accepts 'All', 'Pending', 'Approved', 'Spam', and 'Trash'.
209                  */
210                 $status_links = apply_filters( 'comment_status_links', $status_links );
211                 return $status_links;
212         }
213
214         protected function get_bulk_actions() {
215                 global $comment_status;
216
217                 $actions = array();
218                 if ( in_array( $comment_status, array( 'all', 'approved' ) ) )
219                         $actions['unapprove'] = __( 'Unapprove' );
220                 if ( in_array( $comment_status, array( 'all', 'moderated' ) ) )
221                         $actions['approve'] = __( 'Approve' );
222                 if ( in_array( $comment_status, array( 'all', 'moderated', 'approved', 'trash' ) ) )
223                         $actions['spam'] = _x( 'Mark as Spam', 'comment' );
224
225                 if ( 'trash' == $comment_status )
226                         $actions['untrash'] = __( 'Restore' );
227                 elseif ( 'spam' == $comment_status )
228                         $actions['unspam'] = _x( 'Not Spam', 'comment' );
229
230                 if ( in_array( $comment_status, array( 'trash', 'spam' ) ) || !EMPTY_TRASH_DAYS )
231                         $actions['delete'] = __( 'Delete Permanently' );
232                 else
233                         $actions['trash'] = __( 'Move to Trash' );
234
235                 return $actions;
236         }
237
238         protected function extra_tablenav( $which ) {
239                 global $comment_status, $comment_type;
240 ?>
241                 <div class="alignleft actions">
242 <?php
243                 if ( 'top' == $which ) {
244 ?>
245                         <label class="screen-reader-text" for="filter-by-comment-type"><?php _e( 'Filter by comment type' ); ?></label>
246                         <select id="filter-by-comment-type" name="comment_type">
247                                 <option value=""><?php _e( 'All comment types' ); ?></option>
248 <?php
249                                 /**
250                                  * Filter the comment types dropdown menu.
251                                  *
252                                  * @since 2.7.0
253                                  *
254                                  * @param array $comment_types An array of comment types. Accepts 'Comments', 'Pings'.
255                                  */
256                                 $comment_types = apply_filters( 'admin_comment_types_dropdown', array(
257                                         'comment' => __( 'Comments' ),
258                                         'pings' => __( 'Pings' ),
259                                 ) );
260
261                                 foreach ( $comment_types as $type => $label )
262                                         echo "\t" . '<option value="' . esc_attr( $type ) . '"' . selected( $comment_type, $type, false ) . ">$label</option>\n";
263                         ?>
264                         </select>
265 <?php
266                         /**
267                          * Fires just before the Filter submit button for comment types.
268                          *
269                          * @since 3.5.0
270                          */
271                         do_action( 'restrict_manage_comments' );
272                         submit_button( __( 'Filter' ), 'button', 'filter_action', false, array( 'id' => 'post-query-submit' ) );
273                 }
274
275                 if ( ( 'spam' == $comment_status || 'trash' == $comment_status ) && current_user_can( 'moderate_comments' ) ) {
276                         wp_nonce_field( 'bulk-destroy', '_destroy_nonce' );
277                         $title = ( 'spam' == $comment_status ) ? esc_attr__( 'Empty Spam' ) : esc_attr__( 'Empty Trash' );
278                         submit_button( $title, 'apply', 'delete_all', false );
279                 }
280                 /**
281                  * Fires after the Filter submit button for comment types.
282                  *
283                  * @since 2.5.0
284                  *
285                  * @param string $comment_status The comment status name. Default 'All'.
286                  */
287                 do_action( 'manage_comments_nav', $comment_status );
288                 echo '</div>';
289         }
290
291         public function current_action() {
292                 if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) )
293                         return 'delete_all';
294
295                 return parent::current_action();
296         }
297
298         public function get_columns() {
299                 global $post_id;
300
301                 $columns = array();
302
303                 if ( $this->checkbox )
304                         $columns['cb'] = '<input type="checkbox" />';
305
306                 $columns['author'] = __( 'Author' );
307                 $columns['comment'] = _x( 'Comment', 'column name' );
308
309                 if ( !$post_id )
310                         $columns['response'] = _x( 'In Response To', 'column name' );
311
312                 return $columns;
313         }
314
315         protected function get_sortable_columns() {
316                 return array(
317                         'author'   => 'comment_author',
318                         'response' => 'comment_post_ID'
319                 );
320         }
321
322         public function display() {
323                 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
324
325                 $this->display_tablenav( 'top' );
326
327 ?>
328 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>">
329         <thead>
330         <tr>
331                 <?php $this->print_column_headers(); ?>
332         </tr>
333         </thead>
334
335         <tfoot>
336         <tr>
337                 <?php $this->print_column_headers( false ); ?>
338         </tr>
339         </tfoot>
340
341         <tbody id="the-comment-list" data-wp-lists="list:comment">
342                 <?php $this->display_rows_or_placeholder(); ?>
343         </tbody>
344
345         <tbody id="the-extra-comment-list" data-wp-lists="list:comment" style="display: none;">
346                 <?php $this->items = $this->extra_items; $this->display_rows(); ?>
347         </tbody>
348 </table>
349 <?php
350
351                 $this->display_tablenav( 'bottom' );
352         }
353
354         public function single_row( $a_comment ) {
355                 global $post, $comment;
356
357                 $comment = $a_comment;
358                 $the_comment_class = wp_get_comment_status( $comment->comment_ID );
359                 $the_comment_class = join( ' ', get_comment_class( $the_comment_class, $comment->comment_ID, $comment->comment_post_ID ) );
360
361                 $post = get_post( $comment->comment_post_ID );
362
363                 $this->user_can = current_user_can( 'edit_comment', $comment->comment_ID );
364
365                 echo "<tr id='comment-$comment->comment_ID' class='$the_comment_class'>";
366                 $this->single_row_columns( $comment );
367                 echo "</tr>\n";
368         }
369
370         public function column_cb( $comment ) {
371                 if ( $this->user_can ) { ?>
372                 <label class="screen-reader-text" for="cb-select-<?php echo $comment->comment_ID; ?>"><?php _e( 'Select comment' ); ?></label>
373                 <input id="cb-select-<?php echo $comment->comment_ID; ?>" type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" />
374                 <?php
375                 }
376         }
377
378         public function column_comment( $comment ) {
379                 global $comment_status;
380                 $post = get_post();
381
382                 $user_can = $this->user_can;
383
384                 $comment_url = esc_url( get_comment_link( $comment->comment_ID ) );
385                 $the_comment_status = wp_get_comment_status( $comment->comment_ID );
386
387                 if ( $user_can ) {
388                         $del_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "delete-comment_$comment->comment_ID" ) );
389                         $approve_nonce = esc_html( '_wpnonce=' . wp_create_nonce( "approve-comment_$comment->comment_ID" ) );
390
391                         $url = "comment.php?c=$comment->comment_ID";
392
393                         $approve_url = esc_url( $url . "&action=approvecomment&$approve_nonce" );
394                         $unapprove_url = esc_url( $url . "&action=unapprovecomment&$approve_nonce" );
395                         $spam_url = esc_url( $url . "&action=spamcomment&$del_nonce" );
396                         $unspam_url = esc_url( $url . "&action=unspamcomment&$del_nonce" );
397                         $trash_url = esc_url( $url . "&action=trashcomment&$del_nonce" );
398                         $untrash_url = esc_url( $url . "&action=untrashcomment&$del_nonce" );
399                         $delete_url = esc_url( $url . "&action=deletecomment&$del_nonce" );
400                 }
401
402                 echo '<div class="comment-author">';
403                         $this->column_author( $comment );
404                 echo '</div>';
405
406                 echo '<div class="submitted-on">';
407                 /* translators: 2: comment date, 3: comment time */
408                 printf( __( 'Submitted on <a href="%1$s">%2$s at %3$s</a>' ), $comment_url,
409                         /* translators: comment date format. See http://php.net/date */
410                         get_comment_date( __( 'Y/m/d' ) ),
411                         get_comment_date( get_option( 'time_format' ) )
412                 );
413
414                 if ( $comment->comment_parent ) {
415                         $parent = get_comment( $comment->comment_parent );
416                         $parent_link = esc_url( get_comment_link( $comment->comment_parent ) );
417                         $name = get_comment_author( $parent->comment_ID );
418                         printf( ' | '.__( 'In reply to <a href="%1$s">%2$s</a>.' ), $parent_link, $name );
419                 }
420
421                 echo '</div>';
422                 comment_text();
423                 if ( $user_can ) { ?>
424                 <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden">
425                 <textarea class="comment" rows="1" cols="1"><?php
426                         /** This filter is documented in wp-admin/includes/comment.php */
427                         echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) );
428                 ?></textarea>
429                 <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div>
430                 <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div>
431                 <div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div>
432                 <div class="comment_status"><?php echo $comment->comment_approved; ?></div>
433                 </div>
434                 <?php
435                 }
436
437                 if ( $user_can ) {
438                         // Preorder it: Approve | Reply | Quick Edit | Edit | Spam | Trash.
439                         $actions = array(
440                                 'approve' => '', 'unapprove' => '',
441                                 'reply' => '',
442                                 'quickedit' => '',
443                                 'edit' => '',
444                                 'spam' => '', 'unspam' => '',
445                                 'trash' => '', 'untrash' => '', 'delete' => ''
446                         );
447
448                         // Not looking at all comments.
449                         if ( $comment_status && 'all' != $comment_status ) {
450                                 if ( 'approved' == $the_comment_status )
451                                         $actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=unapproved' class='vim-u vim-destructive' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
452                                 else if ( 'unapproved' == $the_comment_status )
453                                         $actions['approve'] = "<a href='$approve_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:e7e7d3:action=dim-comment&amp;new=approved' class='vim-a vim-destructive' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
454                         } else {
455                                 $actions['approve'] = "<a href='$approve_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=approved' class='vim-a' title='" . esc_attr__( 'Approve this comment' ) . "'>" . __( 'Approve' ) . '</a>';
456                                 $actions['unapprove'] = "<a href='$unapprove_url' data-wp-lists='dim:the-comment-list:comment-$comment->comment_ID:unapproved:e7e7d3:e7e7d3:new=unapproved' class='vim-u' title='" . esc_attr__( 'Unapprove this comment' ) . "'>" . __( 'Unapprove' ) . '</a>';
457                         }
458
459                         if ( 'spam' != $the_comment_status ) {
460                                 $actions['spam'] = "<a href='$spam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::spam=1' class='vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
461                         } elseif ( 'spam' == $the_comment_status ) {
462                                 $actions['unspam'] = "<a href='$unspam_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:66cc66:unspam=1' class='vim-z vim-destructive'>" . _x( 'Not Spam', 'comment' ) . '</a>';
463                         }
464
465                         if ( 'trash' == $the_comment_status ) {
466                                 $actions['untrash'] = "<a href='$untrash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID:66cc66:untrash=1' class='vim-z vim-destructive'>" . __( 'Restore' ) . '</a>';
467                         }
468
469                         if ( 'spam' == $the_comment_status || 'trash' == $the_comment_status || !EMPTY_TRASH_DAYS ) {
470                                 $actions['delete'] = "<a href='$delete_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::delete=1' class='delete vim-d vim-destructive'>" . __( 'Delete Permanently' ) . '</a>';
471                         } else {
472                                 $actions['trash'] = "<a href='$trash_url' data-wp-lists='delete:the-comment-list:comment-$comment->comment_ID::trash=1' class='delete vim-d vim-destructive' title='" . esc_attr__( 'Move this comment to the trash' ) . "'>" . _x( 'Trash', 'verb' ) . '</a>';
473                         }
474
475                         if ( 'spam' != $the_comment_status && 'trash' != $the_comment_status ) {
476                                 $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__( 'Edit comment' ) . "'>". __( 'Edit' ) . '</a>';
477
478                                 $format = '<a data-comment-id="%d" data-post-id="%d" data-action="%s" class="%s" title="%s" href="#">%s</a>';
479
480                                 $actions['quickedit'] = sprintf( $format, $comment->comment_ID, $post->ID, 'edit', 'vim-q comment-inline', esc_attr__( 'Quick Edit' ), __( 'Quick Edit' ) );
481
482                                 $actions['reply'] = sprintf( $format, $comment->comment_ID, $post->ID, 'replyto', 'vim-r comment-inline', esc_attr__( 'Reply to this comment' ), __( 'Reply' ) );
483                         }
484
485                         /** This filter is documented in wp-admin/includes/dashboard.php */
486                         $actions = apply_filters( 'comment_row_actions', array_filter( $actions ), $comment );
487
488                         $i = 0;
489                         echo '<div class="row-actions">';
490                         foreach ( $actions as $action => $link ) {
491                                 ++$i;
492                                 ( ( ( 'approve' == $action || 'unapprove' == $action ) && 2 === $i ) || 1 === $i ) ? $sep = '' : $sep = ' | ';
493
494                                 // Reply and quickedit need a hide-if-no-js span when not added with ajax
495                                 if ( ( 'reply' == $action || 'quickedit' == $action ) && ! defined('DOING_AJAX') )
496                                         $action .= ' hide-if-no-js';
497                                 elseif ( ( $action == 'untrash' && $the_comment_status == 'trash' ) || ( $action == 'unspam' && $the_comment_status == 'spam' ) ) {
498                                         if ( '1' == get_comment_meta( $comment->comment_ID, '_wp_trash_meta_status', true ) )
499                                                 $action .= ' approve';
500                                         else
501                                                 $action .= ' unapprove';
502                                 }
503
504                                 echo "<span class='$action'>$sep$link</span>";
505                         }
506                         echo '</div>';
507                 }
508         }
509
510         public function column_author( $comment ) {
511                 global $comment_status;
512
513                 $author_url = get_comment_author_url();
514                 if ( 'http://' == $author_url )
515                         $author_url = '';
516                 $author_url_display = preg_replace( '|http://(www\.)?|i', '', $author_url );
517                 if ( strlen( $author_url_display ) > 50 )
518                         $author_url_display = substr( $author_url_display, 0, 49 ) . '&hellip;';
519
520                 echo "<strong>"; comment_author(); echo '</strong><br />';
521                 if ( !empty( $author_url ) )
522                         echo "<a title='$author_url' href='$author_url'>$author_url_display</a><br />";
523
524                 if ( $this->user_can ) {
525                         if ( !empty( $comment->comment_author_email ) ) {
526                                 comment_author_email_link();
527                                 echo '<br />';
528                         }
529
530                         $author_ip = get_comment_author_IP();
531                         if ( $author_ip ) {
532                                 $author_ip_url = add_query_arg( array( 's' => $author_ip, 'mode' => 'detail' ), 'edit-comments.php' );
533                                 if ( 'spam' == $comment_status ) {
534                                         $author_ip_url = add_query_arg( 'comment_status', 'spam', $author_ip_url );
535                                 }
536                                 printf( '<a href="%s">%s</a>', esc_url( $author_ip_url ), $author_ip );
537                         }
538                 }
539         }
540
541         public function column_date() {
542                 return get_comment_date( __( 'Y/m/d \a\t g:ia' ) );
543         }
544
545         public function column_response() {
546                 $post = get_post();
547
548                 if ( isset( $this->pending_count[$post->ID] ) ) {
549                         $pending_comments = $this->pending_count[$post->ID];
550                 } else {
551                         $_pending_count_temp = get_pending_comments_num( array( $post->ID ) );
552                         $pending_comments = $this->pending_count[$post->ID] = $_pending_count_temp[$post->ID];
553                 }
554
555                 if ( current_user_can( 'edit_post', $post->ID ) ) {
556                         $post_link = "<a href='" . get_edit_post_link( $post->ID ) . "'>";
557                         $post_link .= get_the_title( $post->ID ) . '</a>';
558                 } else {
559                         $post_link = get_the_title( $post->ID );
560                 }
561
562                 echo '<div class="response-links"><span class="post-com-count-wrapper">';
563                 echo $post_link . '<br />';
564                 $this->comments_bubble( $post->ID, $pending_comments );
565                 echo '</span> ';
566                 $post_type_object = get_post_type_object( $post->post_type );
567                 echo "<a href='" . get_permalink( $post->ID ) . "'>" . $post_type_object->labels->view_item . '</a>';
568                 echo '</div>';
569                 if ( 'attachment' == $post->post_type && ( $thumb = wp_get_attachment_image( $post->ID, array( 80, 60 ), true ) ) )
570                         echo $thumb;
571         }
572
573         public function column_default( $comment, $column_name ) {
574                 /**
575                  * Fires when the default column output is displayed for a single row.
576                  *
577                  * @since 2.8.0
578                  *
579                  * @param string $column_name         The custom column's name.
580                  * @param int    $comment->comment_ID The custom column's unique ID number.
581                  */
582                 do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
583         }
584 }
585
586 /**
587  * Post Comments List Table class.
588  *
589  * @package WordPress
590  * @subpackage List_Table
591  * @since 3.1.0
592  * @access private
593  *
594  * @see WP_Comments_Table
595  */
596 class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
597
598         protected function get_column_info() {
599                 $this->_column_headers = array(
600                         array(
601                         'author'   => __( 'Author' ),
602                         'comment'  => _x( 'Comment', 'column name' ),
603                         ),
604                         array(),
605                         array(),
606                 );
607
608                 return $this->_column_headers;
609         }
610
611         protected function get_table_classes() {
612                 $classes = parent::get_table_classes();
613                 $classes[] = 'comments-box';
614                 return $classes;
615         }
616
617         public function display( $output_empty = false ) {
618                 $singular = $this->_args['singular'];
619
620                 wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
621 ?>
622 <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;">
623         <tbody id="the-comment-list"<?php
624                 if ( $singular ) {
625                         echo " data-wp-lists='list:$singular'";
626                 } ?>>
627                 <?php if ( ! $output_empty ) {
628                         $this->display_rows_or_placeholder();
629                 } ?>
630         </tbody>
631 </table>
632 <?php
633         }
634
635         public function get_per_page( $comment_status = false ) {
636                 return 10;
637         }
638 }