From 6e09b1f1671d774853230aaad5d5f88f22145ca2 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Sun, 18 May 2014 23:58:38 +0000 Subject: [PATCH] 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 --- .../includes/class-wp-comments-list-table.php | 50 +++++++++---------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/src/wp-admin/includes/class-wp-comments-list-table.php b/src/wp-admin/includes/class-wp-comments-list-table.php index ccfa0994c8..af33c5bbc9 100644 --- a/src/wp-admin/includes/class-wp-comments-list-table.php +++ b/src/wp-admin/includes/class-wp-comments-list-table.php @@ -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; ?>
@@ -277,14 +277,14 @@ class WP_Comments_List_Table extends WP_List_Table { echo '
'; } - 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 "\n"; } - function column_cb( $comment ) { + public function column_cb( $comment ) { if ( $this->user_can ) { ?> @@ -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 {