Example #1
0
        array_push($sections_shown, 'home', 'projects', 'clients', 'reports', 'search', 'calendar', 'bookmarks', 'preferences');
        //--- admin? ---
        if ($_SESSION['profilSession'] == "0") {
            array_push($sections_shown, 'admin');
        }
    }
}
foreach ($sections_shown as $nth_section) {
    //--- throw exception if undefined -----
    /*if(!isset($headerSections[$nth_section])) {
    			//echo("WARNING: themes/deepblue.php/header.php:  undefined section!: {$nth_section}<br>");
    			continue;
    		}*/
    //--- current section ---
    if ($nth_section == $pageSection) {
        $blockHeader->itemNavigationCurrent($headerSections[$nth_section], $strings[$nth_section]);
    } else {
        $blockHeader->itemNavigation($headerSections[$nth_section], $strings[$nth_section]);
    }
}
//--- Lien vers encodage ---
//echo $_SESSION['nameSession'];
//echo $assistant_name;
if ($_SESSION['nameSession'] == $admin_name || $_SESSION['nameSession'] == $assistant_name) {
    if ($pageSection == "encode") {
        $blockHeader->itemNavigationCurrent("/_addon/encode.php", "Encodage");
    } else {
        $blockHeader->itemNavigation("../_addon/encode.php", "Encodage");
    }
}
if ($_SESSION['nameSession'] == $admin_name) {
Example #2
0
        array_push($sections_shown, 'home', 'projects', 'clients', 'reports', 'search', 'calendar', 'bookmarks', 'preferences');
        //--- admin? ---
        if ($_SESSION['profilSession'] == "0") {
            array_push($sections_shown, 'admin');
        }
    }
}
foreach ($sections_shown as $nth_section) {
    //--- throw exception if undefined -----
    /*if(!isset($headerSections[$nth_section])) {
    			//echo("WARNING: themes/deepblue.php/header.php:  undefined section!: {$nth_section}<br>");
    			continue;
    		}*/
    //--- current section ---
    if ($nth_section == $pageSection) {
        $blockHeader->itemNavigationCurrent($headerSections[$nth_section], $strings[$nth_section]);
    } else {
        $blockHeader->itemNavigation($headerSections[$nth_section], $strings[$nth_section]);
    }
}
echo "</nobr></td>";
echo "</tr></table>";
if (isset($breadcrumbs) && count($breadcrumbs)) {
    echo "<div id=\"breadcrumbs\">";
    foreach ($breadcrumbs as $crump) {
        echo '<img src="../themes/' . THEME . '/brdcmb_carrat.gif" alt="" align="absmiddle"> ' . $crump;
    }
    echo "</div>\n\n";
}
if ($msg != '') {
    require_once '../includes/messages.php';