Example #1
0
function html_page_top2()
{
    html_page_top2a();
    if (!db_is_connected()) {
        return;
    }
    if (auth_is_user_authenticated()) {
        html_login_info();
        if (ON == config_get('show_project_menu_bar')) {
            print_project_menu_bar();
            print '<br />';
        }
    }
    print_menu();
}
Example #2
0
/**
 * Print the part of the page that comes after meta tags, but before the actual page content
 * @return null
 */
function html_page_top2()
{
    html_page_top2a();
    if (!db_is_connected()) {
        return;
    }
    if (auth_is_user_authenticated()) {
        html_login_info();
        if (ON == config_get('show_project_menu_bar')) {
            print_project_menu_bar();
            echo '<br />';
        }
    }
    print_menu();
    echo '<div id="content">', "\n";
    event_signal('EVENT_LAYOUT_CONTENT_BEGIN');
}