From 5961dbb65b4ca1be9ed4d7ee9c9275c5ef9b63b4 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Mon, 13 Jul 2015 16:13:26 +0000 Subject: [PATCH] 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 --- .../class-wp-ms-themes-list-table.php | 36 +++++++++++++------ wp-includes/version.php | 2 +- 2 files changed, 27 insertions(+), 11 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-themes-list-table.php b/wp-admin/includes/class-wp-ms-themes-list-table.php index 6398fbaa7c..991a07749a 100644 --- a/wp-admin/includes/class-wp-ms-themes-list-table.php +++ b/wp-admin/includes/class-wp-ms-themes-list-table.php @@ -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(); diff --git a/wp-includes/version.php b/wp-includes/version.php index c2bcc54390..07925c4cde 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.