Move `WP_Post_Comments_List_Table` to its own file.
See #33413. Built from https://develop.svn.wordpress.org/trunk@34223 git-svn-id: http://core.svn.wordpress.org/trunk@34187 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
61bef72b95
commit
5920e8eb13
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* Comments and Post Comments List Table classes.
|
* Comments List Table class.
|
||||||
*
|
*
|
||||||
* @package WordPress
|
* @package WordPress
|
||||||
* @subpackage List_Table
|
* @subpackage List_Table
|
||||||
|
@ -735,74 +735,3 @@ class WP_Comments_List_Table extends WP_List_Table {
|
||||||
do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
|
do_action( 'manage_comments_custom_column', $column_name, $comment->comment_ID );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Post Comments List Table class.
|
|
||||||
*
|
|
||||||
* @package WordPress
|
|
||||||
* @subpackage List_Table
|
|
||||||
* @since 3.1.0
|
|
||||||
* @access private
|
|
||||||
*
|
|
||||||
* @see WP_Comments_Table
|
|
||||||
*/
|
|
||||||
class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
protected function get_column_info() {
|
|
||||||
return array(
|
|
||||||
array(
|
|
||||||
'author' => __( 'Author' ),
|
|
||||||
'comment' => _x( 'Comment', 'column name' ),
|
|
||||||
),
|
|
||||||
array(),
|
|
||||||
array(),
|
|
||||||
'comment',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @return array
|
|
||||||
*/
|
|
||||||
protected function get_table_classes() {
|
|
||||||
$classes = parent::get_table_classes();
|
|
||||||
$classes[] = 'wp-list-table';
|
|
||||||
$classes[] = 'comments-box';
|
|
||||||
return $classes;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param bool $output_empty
|
|
||||||
*/
|
|
||||||
public function display( $output_empty = false ) {
|
|
||||||
$singular = $this->_args['singular'];
|
|
||||||
|
|
||||||
wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
|
|
||||||
?>
|
|
||||||
<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;">
|
|
||||||
<tbody id="the-comment-list"<?php
|
|
||||||
if ( $singular ) {
|
|
||||||
echo " data-wp-lists='list:$singular'";
|
|
||||||
} ?>>
|
|
||||||
<?php if ( ! $output_empty ) {
|
|
||||||
$this->display_rows_or_placeholder();
|
|
||||||
} ?>
|
|
||||||
</tbody>
|
|
||||||
</table>
|
|
||||||
<?php
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @param bool $comment_status
|
|
||||||
* @return int
|
|
||||||
*/
|
|
||||||
public function get_per_page( $comment_status = false ) {
|
|
||||||
return 10;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -0,0 +1,79 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* Post Comments List Table class
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage List_Table
|
||||||
|
* @since 4.4.0
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Post Comments List Table class.
|
||||||
|
*
|
||||||
|
* @package WordPress
|
||||||
|
* @subpackage List_Table
|
||||||
|
* @since 3.1.0
|
||||||
|
* @access private
|
||||||
|
*
|
||||||
|
* @see WP_Comments_Table
|
||||||
|
*/
|
||||||
|
class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function get_column_info() {
|
||||||
|
return array(
|
||||||
|
array(
|
||||||
|
'author' => __( 'Author' ),
|
||||||
|
'comment' => _x( 'Comment', 'column name' ),
|
||||||
|
),
|
||||||
|
array(),
|
||||||
|
array(),
|
||||||
|
'comment',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @return array
|
||||||
|
*/
|
||||||
|
protected function get_table_classes() {
|
||||||
|
$classes = parent::get_table_classes();
|
||||||
|
$classes[] = 'wp-list-table';
|
||||||
|
$classes[] = 'comments-box';
|
||||||
|
return $classes;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param bool $output_empty
|
||||||
|
*/
|
||||||
|
public function display( $output_empty = false ) {
|
||||||
|
$singular = $this->_args['singular'];
|
||||||
|
|
||||||
|
wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
|
||||||
|
?>
|
||||||
|
<table class="<?php echo implode( ' ', $this->get_table_classes() ); ?>" style="display:none;">
|
||||||
|
<tbody id="the-comment-list"<?php
|
||||||
|
if ( $singular ) {
|
||||||
|
echo " data-wp-lists='list:$singular'";
|
||||||
|
} ?>>
|
||||||
|
<?php if ( ! $output_empty ) {
|
||||||
|
$this->display_rows_or_placeholder();
|
||||||
|
} ?>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @param bool $comment_status
|
||||||
|
* @return int
|
||||||
|
*/
|
||||||
|
public function get_per_page( $comment_status = false ) {
|
||||||
|
return 10;
|
||||||
|
}
|
||||||
|
}
|
|
@ -27,7 +27,7 @@ function _get_list_table( $class, $args = array() ) {
|
||||||
'WP_Terms_List_Table' => 'terms',
|
'WP_Terms_List_Table' => 'terms',
|
||||||
'WP_Users_List_Table' => 'users',
|
'WP_Users_List_Table' => 'users',
|
||||||
'WP_Comments_List_Table' => 'comments',
|
'WP_Comments_List_Table' => 'comments',
|
||||||
'WP_Post_Comments_List_Table' => 'comments',
|
'WP_Post_Comments_List_Table' => 'post-comments',
|
||||||
'WP_Links_List_Table' => 'links',
|
'WP_Links_List_Table' => 'links',
|
||||||
'WP_Plugin_Install_List_Table' => 'plugin-install',
|
'WP_Plugin_Install_List_Table' => 'plugin-install',
|
||||||
'WP_Themes_List_Table' => 'themes',
|
'WP_Themes_List_Table' => 'themes',
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.4-alpha-34222';
|
$wp_version = '4.4-alpha-34223';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue