Docs: Notate the incoming $theme object members for WP_Theme_Install_List_Table::single_row() as a proper hash notation.

h/t coffee2code.
See #37770.

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


git-svn-id: http://core.svn.wordpress.org/trunk@39106 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Drew Jaynes 2016-11-08 20:16:31 +00:00
parent 5704743a78
commit 7eeab12b1a
2 changed files with 18 additions and 15 deletions

View File

@ -226,23 +226,26 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table {
/** /**
* Prints a theme from the WordPress.org API. * Prints a theme from the WordPress.org API.
* *
* @since 3.1.0
* @access public
*
* @global array $themes_allowedtags * @global array $themes_allowedtags
* *
* @param object $theme An object that contains theme data returned by the WordPress.org API. * @param object $theme {
* An object that contains theme data returned by the WordPress.org API.
* *
* Example theme data: * @type string $name Theme name, e.g. 'Twenty Seventeen'.
* object(stdClass)[59] * @type string $slug Theme slug, e.g. 'twentyseventeen'.
* public 'name' => string 'Magazine Basic' * @type string $version Theme version, e.g. '1.1'.
* public 'slug' => string 'magazine-basic' * @type string $author Theme author username, e.g. 'melchoyce'.
* public 'version' => string '1.1' * @type string $preview_url Preview URL, e.g. 'http://2017.wordpress.net/'.
* public 'author' => string 'tinkerpriest' * @type string $screenshot_url Screenshot URL, e.g. 'https://wordpress.org/themes/twentyseventeen/'.
* public 'preview_url' => string 'http://wp-themes.com/?magazine-basic' * @type float $rating Rating score.
* public 'screenshot_url' => string 'http://wp-themes.com/wp-content/themes/magazine-basic/screenshot.png' * @type int $num_ratings The number of ratings.
* public 'rating' => float 80 * @type string $homepage Theme homepage, e.g. 'https://wordpress.org/themes/twentyseventeen/'.
* public 'num_ratings' => int 1 * @type string $description Theme description.
* public 'homepage' => string 'http://wordpress.org/themes/magazine-basic' * @type string $download_link Theme ZIP download URL.
* public 'description' => string 'A basic magazine style layout with a fully customizable layout through a back-end interface. Designed by <a href="http://bavotasan.com">c.bavota</a> of <a href="http://tinkerpriestmedia.com">Tinker Priest Media</a>.' * }
* public 'download_link' => string 'http://wordpress.org/themes/download/magazine-basic.1.1.zip'
*/ */
public function single_row( $theme ) { public function single_row( $theme ) {
global $themes_allowedtags; global $themes_allowedtags;

View File

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