Add access modifier (public) to members and methods in WP_Comments_List_Table and WP_Post_Comments_List_Table.

See #27881, #22234.

Built from https://develop.svn.wordpress.org/trunk@28486


git-svn-id: http://core.svn.wordpress.org/trunk@28312 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Scott Taylor 2014-05-18 23:59:15 +00:00
parent e917c14144
commit e43e775c45

View File

@ -17,11 +17,11 @@
*/
class WP_Comments_List_Table extends WP_List_Table {
var $checkbox = true;
public $checkbox = true;
var $pending_count = array();
public $pending_count = array();
function __construct( $args = array() ) {
public function __construct( $args = array() ) {
global $post_id;
$post_id = isset( $_REQUEST['p'] ) ? absint( $_REQUEST['p'] ) : 0;
@ -37,11 +37,11 @@ class WP_Comments_List_Table extends WP_List_Table {
) );
}
function ajax_user_can() {
public function ajax_user_can() {
return current_user_can('edit_posts');
}
function prepare_items() {
public function prepare_items() {
global $post_id, $comment_status, $search, $comment_type;
$comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all';
@ -125,7 +125,7 @@ class WP_Comments_List_Table extends WP_List_Table {
) );
}
function get_per_page( $comment_status = 'all' ) {
public function get_per_page( $comment_status = 'all' ) {
$comments_per_page = $this->get_items_per_page( 'edit_comments_per_page' );
/**
* Filter the number of comments listed per page in the comments list table.
@ -139,7 +139,7 @@ class WP_Comments_List_Table extends WP_List_Table {
return $comments_per_page;
}
function no_items() {
public function no_items() {
global $comment_status;
if ( 'moderated' == $comment_status )
@ -148,7 +148,7 @@ class WP_Comments_List_Table extends WP_List_Table {
_e( 'No comments found.' );
}
function get_views() {
public function get_views() {
global $post_id, $comment_status, $comment_type;
$status_links = array();
@ -201,7 +201,7 @@ class WP_Comments_List_Table extends WP_List_Table {
return $status_links;
}
function get_bulk_actions() {
public function get_bulk_actions() {
global $comment_status;
$actions = array();
@ -225,7 +225,7 @@ class WP_Comments_List_Table extends WP_List_Table {
return $actions;
}
function extra_tablenav( $which ) {
public function extra_tablenav( $which ) {
global $comment_status, $comment_type;
?>
<div class="alignleft actions">
@ -277,14 +277,14 @@ class WP_Comments_List_Table extends WP_List_Table {
echo '</div>';
}
function current_action() {
public function current_action() {
if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) )
return 'delete_all';
return parent::current_action();
}
function get_columns() {
public function get_columns() {
global $post_id;
$columns = array();
@ -301,14 +301,14 @@ class WP_Comments_List_Table extends WP_List_Table {
return $columns;
}
function get_sortable_columns() {
public function get_sortable_columns() {
return array(
'author' => 'comment_author',
'response' => 'comment_post_ID'
);
}
function display() {
public function display() {
wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
$this->display_tablenav( 'top' );
@ -340,7 +340,7 @@ class WP_Comments_List_Table extends WP_List_Table {
$this->display_tablenav( 'bottom' );
}
function single_row( $a_comment ) {
public function single_row( $a_comment ) {
global $post, $comment;
$comment = $a_comment;
@ -356,7 +356,7 @@ class WP_Comments_List_Table extends WP_List_Table {
echo "</tr>\n";
}
function column_cb( $comment ) {
public function column_cb( $comment ) {
if ( $this->user_can ) { ?>
<label class="screen-reader-text" for="cb-select-<?php echo $comment->comment_ID; ?>"><?php _e( 'Select comment' ); ?></label>
<input id="cb-select-<?php echo $comment->comment_ID; ?>" type="checkbox" name="delete_comments[]" value="<?php echo $comment->comment_ID; ?>" />
@ -364,7 +364,7 @@ class WP_Comments_List_Table extends WP_List_Table {
}
}
function column_comment( $comment ) {
public function column_comment( $comment ) {
global $comment_status;
$post = get_post();
@ -489,7 +489,7 @@ class WP_Comments_List_Table extends WP_List_Table {
}
}
function column_author( $comment ) {
public function column_author( $comment ) {
global $comment_status;
$author_url = get_comment_author_url();
@ -519,11 +519,11 @@ class WP_Comments_List_Table extends WP_List_Table {
}
}
function column_date( $comment ) {
public function column_date( $comment ) {
return get_comment_date( __( 'Y/m/d \a\t g:ia' ) );
}
function column_response( $comment ) {
public function column_response( $comment ) {
$post = get_post();
if ( isset( $this->pending_count[$post->ID] ) ) {
@ -551,7 +551,7 @@ class WP_Comments_List_Table extends WP_List_Table {
echo $thumb;
}
function column_default( $comment, $column_name ) {
public function column_default( $comment, $column_name ) {
/**
* Fires when the default column output is displayed for a single row.
*
@ -576,7 +576,7 @@ class WP_Comments_List_Table extends WP_List_Table {
*/
class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
function get_column_info() {
public function get_column_info() {
$this->_column_headers = array(
array(
'author' => __( 'Author' ),
@ -589,13 +589,13 @@ class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
return $this->_column_headers;
}
function get_table_classes() {
public function get_table_classes() {
$classes = parent::get_table_classes();
$classes[] = 'comments-box';
return $classes;
}
function display( $output_empty = false ) {
public function display( $output_empty = false ) {
$singular = $this->_args['singular'];
wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
@ -613,7 +613,7 @@ class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
<?php
}
function get_per_page( $comment_status = false ) {
public function get_per_page( $comment_status = false ) {
return 10;
}
}