From 7718e07129e938a6e3b11be925a50c809e67f12c Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Sat, 9 Jan 2016 01:37:26 +0000 Subject: [PATCH] Docs: Correct the parameter docs for various Heartbeat filters and functions. See #32246 Built from https://develop.svn.wordpress.org/trunk@36231 git-svn-id: http://core.svn.wordpress.org/trunk@36198 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/ajax-actions.php | 14 +++++++------- wp-admin/includes/misc.php | 19 +++++++++++++++++++ wp-includes/version.php | 2 +- 3 files changed, 27 insertions(+), 8 deletions(-) diff --git a/wp-admin/includes/ajax-actions.php b/wp-admin/includes/ajax-actions.php index 29a11fc235..ec3e1e1057 100644 --- a/wp-admin/includes/ajax-actions.php +++ b/wp-admin/includes/ajax-actions.php @@ -2706,9 +2706,9 @@ function wp_ajax_heartbeat() { * * @since 3.6.0 * - * @param array|object $response The Heartbeat response object or array. - * @param array $data The $_POST data sent. - * @param string $screen_id The screen id. + * @param array $response The Heartbeat response. + * @param array $data The $_POST data sent. + * @param string $screen_id The screen id. */ $response = apply_filters( 'heartbeat_received', $response, $data, $screen_id ); } @@ -2718,8 +2718,8 @@ function wp_ajax_heartbeat() { * * @since 3.6.0 * - * @param array|object $response The Heartbeat response object or array. - * @param string $screen_id The screen id. + * @param array $response The Heartbeat response. + * @param string $screen_id The screen id. */ $response = apply_filters( 'heartbeat_send', $response, $screen_id ); @@ -2730,8 +2730,8 @@ function wp_ajax_heartbeat() { * * @since 3.6.0 * - * @param array|object $response The Heartbeat response object or array. - * @param string $screen_id The screen id. + * @param array $response The Heartbeat response. + * @param string $screen_id The screen id. */ do_action( 'heartbeat_tick', $response, $screen_id ); diff --git a/wp-admin/includes/misc.php b/wp-admin/includes/misc.php index d3d2d34279..9d54243975 100644 --- a/wp-admin/includes/misc.php +++ b/wp-admin/includes/misc.php @@ -729,6 +729,11 @@ function _ipad_meta() { * Check lock status for posts displayed on the Posts screen * * @since 3.6.0 + * + * @param array $response The Heartbeat response. + * @param array $data The $_POST data sent. + * @param string $screen_id The screen id. + * @return array The Heartbeat response. */ function wp_check_locked_posts( $response, $data, $screen_id ) { $checked = array(); @@ -759,6 +764,11 @@ function wp_check_locked_posts( $response, $data, $screen_id ) { * Check lock status on the New/Edit Post screen and refresh the lock * * @since 3.6.0 + * + * @param array $response The Heartbeat response. + * @param array $data The $_POST data sent. + * @param string $screen_id The screen id. + * @return array The Heartbeat response. */ function wp_refresh_post_lock( $response, $data, $screen_id ) { if ( array_key_exists( 'wp-refresh-post-lock', $data ) ) { @@ -797,6 +807,11 @@ function wp_refresh_post_lock( $response, $data, $screen_id ) { * Check nonce expiration on the New/Edit Post screen and refresh if needed * * @since 3.6.0 + * + * @param array $response The Heartbeat response. + * @param array $data The $_POST data sent. + * @param string $screen_id The screen id. + * @return array The Heartbeat response. */ function wp_refresh_post_nonces( $response, $data, $screen_id ) { if ( array_key_exists( 'wp-refresh-post-nonces', $data ) ) { @@ -850,6 +865,10 @@ function wp_heartbeat_set_suspension( $settings ) { * Autosave with heartbeat * * @since 3.9.0 + * + * @param array $response The Heartbeat response. + * @param array $data The $_POST data sent. + * @return array The Heartbeat response. */ function heartbeat_autosave( $response, $data ) { if ( ! empty( $data['wp_autosave'] ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index a759aaa399..c902c5d709 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.5-alpha-36230'; +$wp_version = '4.5-alpha-36231'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.