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 4070 to 4078

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 24th April 2024 21:35 Europe/London time based on the source file dated 17th April 2024 16:25 Europe/London time.