From 83dd461b2f06adce4bd85385623409c57b1695cf Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Fri, 22 May 2015 04:00:26 +0000 Subject: [PATCH] Add missing doc blocks to `admin-bar.php`. See #32444. Built from https://develop.svn.wordpress.org/trunk@32537 git-svn-id: http://core.svn.wordpress.org/trunk@32507 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/admin-bar.php | 14 +++++++++++++- wp-includes/version.php | 2 +- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/wp-includes/admin-bar.php b/wp-includes/admin-bar.php index 82520e0387..fbf1a320ac 100644 --- a/wp-includes/admin-bar.php +++ b/wp-includes/admin-bar.php @@ -13,6 +13,9 @@ * * @since 3.1.0 * @access private + * + * @global WP_Admin_Bar $wp_admin_bar + * * @return bool Whether the admin bar was successfully initialized. */ function _wp_admin_bar_init() { @@ -55,6 +58,8 @@ function _wp_admin_bar_init() { * right before the admin bar is rendered. This also gives you access to the $post global, among others. * * @since 3.1.0 + * + * @global WP_Admin_Bar $wp_admin_bar */ function wp_admin_bar_render() { global $wp_admin_bar; @@ -480,6 +485,9 @@ function wp_admin_bar_shortlink_menu( $wp_admin_bar ) { * * @since 3.1.0 * + * @global object $tag + * @global WP_Query $wp_the_query + * * @param WP_Admin_Bar $wp_admin_bar */ function wp_admin_bar_edit_menu( $wp_admin_bar ) { @@ -890,8 +898,9 @@ function _admin_bar_bump_cb() { ?> * * @since 3.1.0 * + * @global WP_Admin_Bar $wp_admin_bar + * * @param bool $show Whether to allow the admin bar to show. - * @return void */ function show_admin_bar( $show ) { global $show_admin_bar; @@ -903,6 +912,9 @@ function show_admin_bar( $show ) { * * @since 3.1.0 * + * @global WP_Admin_Bar $wp_admin_bar + * @global string $pagenow + * * @return bool Whether the admin bar should be showing. */ function is_admin_bar_showing() { diff --git a/wp-includes/version.php b/wp-includes/version.php index 6c6b40af88..917c8ad7ce 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32536'; +$wp_version = '4.3-alpha-32537'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.