bbp_check_post_lock_window
bbp_check_post_lock_window
Appears in: bbpress.2.6.0, bbpress.2.6.1, bbpress.2.6.11, bbpress.2.6.12, bbpress.2.6.2, bbpress.2.6.3, bbpress.2.6.4, bbpress.2.6.5, bbpress.2.6.6, bbpress.2.6.9
Hook Type: filter
Displaying hooks found in version: bbpress.2.6.9apply_filters('bbp_check_post_lock_window') is found 1 times:
- /includes/common/locks.php line 4339404142434445464748
?
$lock
[1]
: get_post_meta(
$post
->ID,
'_edit_last'
, true );
// Filter editing window duration
$time_window
= apply_filters(
'bbp_check_post_lock_window'
, 3 * MINUTE_IN_SECONDS );
// Return user who is or last edited
if
( !
empty
(
$time
) && (
$time
> ( time() -
$time_window
) ) && (
$user
!== bbp_get_current_user_id() ) ) {
return
(int)
$user
;
}