Changeset 36231
- Timestamp:
- 01/09/2016 01:36:45 AM (9 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r35811 r36231 2707 2707 * @since 3.6.0 2708 2708 * 2709 * @param array |object $response The Heartbeat response object or array.2710 * @param array 2711 * @param string 2709 * @param array $response The Heartbeat response. 2710 * @param array $data The $_POST data sent. 2711 * @param string $screen_id The screen id. 2712 2712 */ 2713 2713 $response = apply_filters( 'heartbeat_received', $response, $data, $screen_id ); … … 2719 2719 * @since 3.6.0 2720 2720 * 2721 * @param array |object $response The Heartbeat response object or array.2722 * @param string 2721 * @param array $response The Heartbeat response. 2722 * @param string $screen_id The screen id. 2723 2723 */ 2724 2724 $response = apply_filters( 'heartbeat_send', $response, $screen_id ); … … 2731 2731 * @since 3.6.0 2732 2732 * 2733 * @param array |object $response The Heartbeat response object or array.2734 * @param string 2733 * @param array $response The Heartbeat response. 2734 * @param string $screen_id The screen id. 2735 2735 */ 2736 2736 do_action( 'heartbeat_tick', $response, $screen_id ); -
trunk/src/wp-admin/includes/misc.php
r35468 r36231 730 730 * 731 731 * @since 3.6.0 732 * 733 * @param array $response The Heartbeat response. 734 * @param array $data The $_POST data sent. 735 * @param string $screen_id The screen id. 736 * @return array The Heartbeat response. 732 737 */ 733 738 function wp_check_locked_posts( $response, $data, $screen_id ) { … … 760 765 * 761 766 * @since 3.6.0 767 * 768 * @param array $response The Heartbeat response. 769 * @param array $data The $_POST data sent. 770 * @param string $screen_id The screen id. 771 * @return array The Heartbeat response. 762 772 */ 763 773 function wp_refresh_post_lock( $response, $data, $screen_id ) { … … 798 808 * 799 809 * @since 3.6.0 810 * 811 * @param array $response The Heartbeat response. 812 * @param array $data The $_POST data sent. 813 * @param string $screen_id The screen id. 814 * @return array The Heartbeat response. 800 815 */ 801 816 function wp_refresh_post_nonces( $response, $data, $screen_id ) { … … 851 866 * 852 867 * @since 3.9.0 868 * 869 * @param array $response The Heartbeat response. 870 * @param array $data The $_POST data sent. 871 * @return array The Heartbeat response. 853 872 */ 854 873 function heartbeat_autosave( $response, $data ) {
Note: See TracChangeset
for help on using the changeset viewer.