has_browsebar()

Description

Utility to check if browse bar should be rendered

Parameters

This function accepts no parameters.

Return

boolean

Location

include/render_functions.php lines 4249 to 4257

Definition

 
function has_browsebar()
    {
    global 
$username$pagename$loginterms$not_authenticated_pages$k$internal_share_access$browse_bar;
    return isset(
$username)
    && 
is_array($not_authenticated_pages) && !in_array($pagename$not_authenticated_pages)
    && (
'' == $k || $internal_share_access)
    && 
$browse_bar;
    
//   && false == $loginterms ?
    
}

This article was last updated 19th April 2025 12:05 Europe/London time based on the source file dated 17th April 2025 12:55 Europe/London time.