X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/wordpress.git/blobdiff_plain/9e77185fafaf4e60e2b73821e0e4b9b1a11fb85f..refs/tags/wordpress-4.4:/wp-admin/includes/list-table.php diff --git a/wp-admin/includes/list-table.php b/wp-admin/includes/list-table.php index 04b552f1..8120598a 100644 --- a/wp-admin/includes/list-table.php +++ b/wp-admin/includes/list-table.php @@ -13,6 +13,8 @@ * @access private * @since 3.1.0 * + * @global string $hook_suffix + * * @param string $class The type of the list table, which is the class name. * @param array $args Optional. Arguments to pass to the class. Accepts 'screen'. * @return object|bool Object on success, false if the class does not exist. @@ -25,7 +27,7 @@ function _get_list_table( $class, $args = array() ) { 'WP_Terms_List_Table' => 'terms', 'WP_Users_List_Table' => 'users', 'WP_Comments_List_Table' => 'comments', - 'WP_Post_Comments_List_Table' => 'comments', + 'WP_Post_Comments_List_Table' => array( 'comments', 'post-comments' ), 'WP_Links_List_Table' => 'links', 'WP_Plugin_Install_List_Table' => 'plugin-install', 'WP_Themes_List_Table' => 'themes', @@ -99,14 +101,25 @@ class _WP_List_Table_Compat extends WP_List_Table { } } + /** + * @access protected + * + * @return array + */ protected function get_column_info() { $columns = get_column_headers( $this->_screen ); $hidden = get_hidden_columns( $this->_screen ); $sortable = array(); + $primary = $this->get_default_primary_column_name(); - return array( $columns, $hidden, $sortable ); + return array( $columns, $hidden, $sortable, $primary ); } + /** + * @access public + * + * @return array + */ public function get_columns() { return $this->_columns; }