Changeset 48200 for trunk/src/wp-admin/includes/ajax-actions.php
- Timestamp:
- 06/28/2020 02:07:53 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/ajax-actions.php
r48168 r48200 40 40 * @param array $response The no-priv Heartbeat response. 41 41 * @param array $data The $_POST data sent. 42 * @param string $screen_id The screen id.42 * @param string $screen_id The screen ID. 43 43 */ 44 44 $response = apply_filters( 'heartbeat_nopriv_received', $response, $data, $screen_id ); … … 51 51 * 52 52 * @param array $response The no-priv Heartbeat response. 53 * @param string $screen_id The screen id.53 * @param string $screen_id The screen ID. 54 54 */ 55 55 $response = apply_filters( 'heartbeat_nopriv_send', $response, $screen_id ); … … 63 63 * 64 64 * @param array $response The no-priv Heartbeat response. 65 * @param string $screen_id The screen id.65 * @param string $screen_id The screen ID. 66 66 */ 67 67 do_action( 'heartbeat_nopriv_tick', $response, $screen_id ); … … 3355 3355 * @param array $response The Heartbeat response. 3356 3356 * @param array $data The $_POST data sent. 3357 * @param string $screen_id The screen id.3357 * @param string $screen_id The screen ID. 3358 3358 */ 3359 3359 $response = apply_filters( 'wp_refresh_nonces', $response, $data, $screen_id ); … … 3374 3374 * @param array $response The Heartbeat response. 3375 3375 * @param array $data The $_POST data sent. 3376 * @param string $screen_id The screen id.3376 * @param string $screen_id The screen ID. 3377 3377 */ 3378 3378 $response = apply_filters( 'heartbeat_received', $response, $data, $screen_id ); … … 3385 3385 * 3386 3386 * @param array $response The Heartbeat response. 3387 * @param string $screen_id The screen id.3387 * @param string $screen_id The screen ID. 3388 3388 */ 3389 3389 $response = apply_filters( 'heartbeat_send', $response, $screen_id ); … … 3397 3397 * 3398 3398 * @param array $response The Heartbeat response. 3399 * @param string $screen_id The screen id.3399 * @param string $screen_id The screen ID. 3400 3400 */ 3401 3401 do_action( 'heartbeat_tick', $response, $screen_id );
Note: See TracChangeset
for help on using the changeset viewer.