Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: wp_check_post_lock_window

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
1770      check_ajax_referer( 'update-post_' . $post_id );
1771
1772      if ( ! current_user_can( 'edit_post', $post_id ) )
1773           wp_die( -1 );
1774
1775      $active_lock = array_map( 'absint', explode( ':', $_POST['active_post_lock'] ) );
1776      if ( $active_lock[1] != get_current_user_id() )
1777           wp_die( 0 );
1778
1779      $new_lock = ( time() - apply_filters( 'wp_check_post_lock_window', AUTOSAVE_INTERVAL * 2 ) + 5 ) . ':' . $active_lock[1];
1780      update_post_meta( $post_id, '_edit_lock', $new_lock, implode( ':', $active_lock ) );
1781      wp_die( 1 );
1782 }
1783
1784 function wp_ajax_dismiss_wp_pointer() {
1785      $pointer = $_POST['pointer'];
1786      if ( $pointer != sanitize_key( $pointer ) )
1787           wp_die( 0 );
1788