- Timestamp:
- 07/13/2014 10:08:22 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r28916 r29137 149 149 } 150 150 151 p ublicfunction get_views() {151 protected function get_views() { 152 152 global $post_id, $comment_status, $comment_type; 153 153 … … 202 202 } 203 203 204 p ublicfunction get_bulk_actions() {204 protected function get_bulk_actions() { 205 205 global $comment_status; 206 206 … … 226 226 } 227 227 228 p ublicfunction extra_tablenav( $which ) {228 protected function extra_tablenav( $which ) { 229 229 global $comment_status, $comment_type; 230 230 ?> … … 302 302 } 303 303 304 p ublicfunction get_sortable_columns() {304 protected function get_sortable_columns() { 305 305 return array( 306 306 'author' => 'comment_author', … … 583 583 class WP_Post_Comments_List_Table extends WP_Comments_List_Table { 584 584 585 p ublicfunction get_column_info() {585 protected function get_column_info() { 586 586 $this->_column_headers = array( 587 587 array( … … 596 596 } 597 597 598 p ublicfunction get_table_classes() {598 protected function get_table_classes() { 599 599 $classes = parent::get_table_classes(); 600 600 $classes[] = 'comments-box';
Note: See TracChangeset
for help on using the changeset viewer.