0 && user_can( $user_id, 'edit_pages' ); /** * Filter whether the current user is eligible to have the native * Pages window registered. This is the boot-time check; runtime * "should the dock click use the native window?" is the JS-side * `nativePagesEnabled` flag. * * @param bool $can Default: `edit_pages` capability. * @param int $user_id User being checked. */ return (bool) apply_filters( 'openstation_pages_window_user_can_register', $can, $user_id ); } /** * Combined cap-and-opt-in check. Boot registration uses * {@see openstation_pages_window_user_can_register()}; the JS-side * remap reads the OS-settings snapshot directly. This helper is for * any caller that wants the combined answer. * * @param int|null $user_id Optional. * @return bool */ function openstation_pages_window_user_can_use( $user_id = null ) { $user_id = null === $user_id ? get_current_user_id() : (int) $user_id; $cap_ok = openstation_pages_window_user_can_register( $user_id ); $opt_in = false; if ( $cap_ok && function_exists( 'openstation_get_os_settings' ) ) { $settings = openstation_get_os_settings( $user_id ); $opt_in = ! empty( $settings['nativePagesEnabled'] ); } $can = $cap_ok && $opt_in; /** * Filter whether the current user has opted into the native Pages * experience. * * @param bool $can Default gate result. * @param int $user_id User being checked. */ return (bool) apply_filters( 'openstation_pages_window_user_can_use', $can, $user_id ); }