Add missing summaries to new methods added to `WP_MS_Themes_List_Table` in 4.3.

See [32756]. See #32891.

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


git-svn-id: http://core.svn.wordpress.org/trunk@33165 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2015-07-13 16:13:26 +00:00
parent f3eba1581c
commit 5961dbb65b
2 changed files with 27 additions and 11 deletions

View File

@ -245,7 +245,7 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
}
/**
* Get the name of the primary column.
* Gets the name of the primary column.
*
* @since 4.3.0
* @access protected
@ -336,9 +336,12 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
}
/**
* @since 4.3.0
* Handles the checkbox column output.
*
* @param WP_Theme $theme
* @since 4.3.0
* @access public
*
* @param WP_Theme $theme The current WP_Theme object.
*/
public function column_cb( $theme ) {
$checkbox_id = 'checkbox_' . md5( $theme->get('Name') );
@ -349,13 +352,16 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
}
/**
* Handles the name column output.
*
* @since 4.3.0
* @access public
*
* @global string $status
* @global int $page
* @global string $s
*
* @param WP_Theme $theme
* @param WP_Theme $theme The current WP_Theme object.
*/
public function column_name( $theme ) {
global $status, $page, $s;
@ -440,12 +446,15 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
}
/**
* Handles the description column output.
*
* @since 4.3.0
* @access public
*
* @global string $status
* @global array $totals
*
* @param WP_Theme $theme
* @param WP_Theme $theme The current WP_Theme object.
*/
public function column_description( $theme ) {
global $status, $totals;
@ -498,13 +507,17 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
}
/**
* @since 4.3.0
* Handles default column output.
*
* @param WP_Theme $theme
* @param string $column_name
* @since 4.3.0
* @access public
*
* @param WP_Theme $theme The current WP_Theme object.
* @param string $column_name The current column name.
*/
public function column_default( $theme, $column_name ) {
$stylesheet = $theme->get_stylesheet();
/**
* Fires inside each custom column of the Multisite themes list table.
*
@ -518,9 +531,12 @@ class WP_MS_Themes_List_Table extends WP_List_Table {
}
/**
* @since 4.3.0
* Handles the output for a single table row.
*
* @param WP_Theme $item
* @since 4.3.0
* @access public
*
* @param WP_Theme $item The current WP_Theme object.
*/
public function single_row_columns( $item ) {
list( $columns, $hidden, $sortable, $primary ) = $this->get_column_info();

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-beta2-33192';
$wp_version = '4.3-beta2-33193';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.