WP_Comments_Table cleanup:

* use column_*() methods
	* remove extra arguments from single_row()
	* introduce derived class WP_Post_Comments_Table for handling the post metabox comments
	* use $pending_count property instead of $_comment_pending_count global
See #14579



git-svn-id: http://svn.automattic.com/wordpress/trunk@15630 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
scribu
2010-09-18 17:46:29 +00:00
parent a927a1665c
commit ce723858c2
3 changed files with 223 additions and 213 deletions

View File

@@ -459,10 +459,8 @@ function post_comment_meta_box($post) {
}
wp_nonce_field( 'get-comments', 'add_comment_nonce', false );
add_filter('manage_edit-comments_columns', 'post_comment_meta_box_thead', 8, 1);
add_filter('manage_edit-comments_sortable_columns', '__return_empty_array', 8);
$wp_list_table = get_list_table('comments');
$wp_list_table = get_list_table('post-comments');
?>
<table class="widefat comments-box fixed" cellspacing="0" style="display:none;">
@@ -478,7 +476,6 @@ function post_comment_meta_box($post) {
<script type="text/javascript">jQuery(document).ready(function(){commentsBox.get(<?php echo $total; ?>, 10);});</script>
<?php
}
remove_filter('manage_edit-comments_columns', 'post_comment_meta_box_thead');
wp_comment_trashnotice();
}