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

See #27881, #22234.


git-svn-id: https://develop.svn.wordpress.org/trunk@28486 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-05-18 23:58:38 +00:00
parent 8af8f5f8f2
commit 6e09b1f167
1 changed files with 25 additions and 25 deletions

View File

@ -17,11 +17,11 @@
*/ */
class WP_Comments_List_Table extends WP_List_Table { 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; global $post_id;
$post_id = isset( $_REQUEST['p'] ) ? absint( $_REQUEST['p'] ) : 0; $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'); return current_user_can('edit_posts');
} }
function prepare_items() { public function prepare_items() {
global $post_id, $comment_status, $search, $comment_type; global $post_id, $comment_status, $search, $comment_type;
$comment_status = isset( $_REQUEST['comment_status'] ) ? $_REQUEST['comment_status'] : 'all'; $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' ); $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. * 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; return $comments_per_page;
} }
function no_items() { public function no_items() {
global $comment_status; global $comment_status;
if ( 'moderated' == $comment_status ) if ( 'moderated' == $comment_status )
@ -148,7 +148,7 @@ class WP_Comments_List_Table extends WP_List_Table {
_e( 'No comments found.' ); _e( 'No comments found.' );
} }
function get_views() { public function get_views() {
global $post_id, $comment_status, $comment_type; global $post_id, $comment_status, $comment_type;
$status_links = array(); $status_links = array();
@ -201,7 +201,7 @@ class WP_Comments_List_Table extends WP_List_Table {
return $status_links; return $status_links;
} }
function get_bulk_actions() { public function get_bulk_actions() {
global $comment_status; global $comment_status;
$actions = array(); $actions = array();
@ -225,7 +225,7 @@ class WP_Comments_List_Table extends WP_List_Table {
return $actions; return $actions;
} }
function extra_tablenav( $which ) { public function extra_tablenav( $which ) {
global $comment_status, $comment_type; global $comment_status, $comment_type;
?> ?>
<div class="alignleft actions"> <div class="alignleft actions">
@ -277,14 +277,14 @@ class WP_Comments_List_Table extends WP_List_Table {
echo '</div>'; echo '</div>';
} }
function current_action() { public function current_action() {
if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) ) if ( isset( $_REQUEST['delete_all'] ) || isset( $_REQUEST['delete_all2'] ) )
return 'delete_all'; return 'delete_all';
return parent::current_action(); return parent::current_action();
} }
function get_columns() { public function get_columns() {
global $post_id; global $post_id;
$columns = array(); $columns = array();
@ -301,14 +301,14 @@ class WP_Comments_List_Table extends WP_List_Table {
return $columns; return $columns;
} }
function get_sortable_columns() { public function get_sortable_columns() {
return array( return array(
'author' => 'comment_author', 'author' => 'comment_author',
'response' => 'comment_post_ID' 'response' => 'comment_post_ID'
); );
} }
function display() { public function display() {
wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' );
$this->display_tablenav( 'top' ); $this->display_tablenav( 'top' );
@ -340,7 +340,7 @@ class WP_Comments_List_Table extends WP_List_Table {
$this->display_tablenav( 'bottom' ); $this->display_tablenav( 'bottom' );
} }
function single_row( $a_comment ) { public function single_row( $a_comment ) {
global $post, $comment; global $post, $comment;
$comment = $a_comment; $comment = $a_comment;
@ -356,7 +356,7 @@ class WP_Comments_List_Table extends WP_List_Table {
echo "</tr>\n"; echo "</tr>\n";
} }
function column_cb( $comment ) { public function column_cb( $comment ) {
if ( $this->user_can ) { ?> if ( $this->user_can ) { ?>
<label class="screen-reader-text" for="cb-select-<?php echo $comment->comment_ID; ?>"><?php _e( 'Select comment' ); ?></label> <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; ?>" /> <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; global $comment_status;
$post = get_post(); $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; global $comment_status;
$author_url = get_comment_author_url(); $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' ) ); return get_comment_date( __( 'Y/m/d \a\t g:ia' ) );
} }
function column_response( $comment ) { public function column_response( $comment ) {
$post = get_post(); $post = get_post();
if ( isset( $this->pending_count[$post->ID] ) ) { if ( isset( $this->pending_count[$post->ID] ) ) {
@ -551,7 +551,7 @@ class WP_Comments_List_Table extends WP_List_Table {
echo $thumb; 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. * 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 { class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
function get_column_info() { public function get_column_info() {
$this->_column_headers = array( $this->_column_headers = array(
array( array(
'author' => __( 'Author' ), 'author' => __( 'Author' ),
@ -589,13 +589,13 @@ class WP_Post_Comments_List_Table extends WP_Comments_List_Table {
return $this->_column_headers; return $this->_column_headers;
} }
function get_table_classes() { public function get_table_classes() {
$classes = parent::get_table_classes(); $classes = parent::get_table_classes();
$classes[] = 'comments-box'; $classes[] = 'comments-box';
return $classes; return $classes;
} }
function display( $output_empty = false ) { public function display( $output_empty = false ) {
$singular = $this->_args['singular']; $singular = $this->_args['singular'];
wp_nonce_field( "fetch-list-" . get_class( $this ), '_ajax_fetch_list_nonce' ); 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 <?php
} }
function get_per_page( $comment_status = false ) { public function get_per_page( $comment_status = false ) {
return 10; return 10;
} }
} }