Collections functions
General functions
Node functions
Render functions
Theme permission functions
User functions
Resource functions

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 4127 to 4135

Definition

 
function has_browsebar()
    {
    global 
$username$pagename,$not_authenticated_pages$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 March 2024 10:35 Europe/London time based on the source file dated 15th March 2024 17:00 Europe/London time.