25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

78 lines
1.4 KiB

  1. <?php
  2. /**
  3. * List Table API: WP_Post_Comments_List_Table class
  4. *
  5. * @package WordPress
  6. * @subpackage Administration
  7. * @since 4.4.0
  8. */
  9. /**
  10. * Core class used to implement displaying post comments in a list table.
  11. *
  12. * @since 3.1.0
  13. * @access private
  14. *
  15. * @see WP_Comments_List_Table
  16. */
  17. class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
  18. /**
  19. *
  20. * @return array
  21. */
  22. protected function get_column_info() {
  23. return array(
  24. array(
  25. 'author' => __( 'Author' ),
  26. 'comment' => _x( 'Comment', 'column name' ),
  27. ),
  28. array(),
  29. array(),
  30. 'comment',
  31. );
  32. }
  33. /**
  34. *
  35. * @return array
  36. */
  37. protected function get_table_classes() {
  38. $classes = parent::get_table_classes();
  39. $classes[] = 'wp-list-table';
  40. $classes[] = 'comments-box';
  41. return $classes;
  42. }
  43. /**
  44. *
  45. * @param bool $output_empty
  46. */
  47. public function display( $output_empty = false ) {
  48. $singular = $this->_args['singular'];
  49. wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
  50. ?>
  51. <table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;">
  52. <tbody id="the-comment-list"<?php
  53. if ( $singular ) {
  54. echo " data-wp-lists='list:$singular'";
  55. } ?>>
  56. <?php if ( ! $output_empty ) {
  57. $this->display_rows_or_placeholder();
  58. } ?>
  59. </tbody>
  60. </table>
  61. <?php
  62. }
  63. /**
  64. *
  65. * @param bool $comment_status
  66. * @return int
  67. */
  68. public function get_per_page( $comment_status = false ) {
  69. return 10;
  70. }
  71. }