production/Vue/header.php
2026-02-02 15:44:46 +00:00

39 lines
2.1 KiB
PHP
Executable File

<?php
$styleHeader = "";
$labelTest = "";
if($_SESSION['bdTests_C'] == "1"){
$colorTests = $_SESSION['colorTests'];
$styleHeader = "border-bottom: 4px solid $colorTests;";
$labelTest = '<span class="badge bg-danger ms-2">'. _("MODE TEST") .'</span>';
}
$flag = (est_anglophone()) ? 'england.png' : 'france.png';
?>
<header id="header" class="header fixed-top d-flex align-items-center shadow-sm" style="background: #fff; border-bottom: 1px solid #e0e0e0;">
<div class="d-flex align-items-center justify-content-between px-3" style="width: 280px;">
<a class="logo d-flex align-items-center text-decoration-none">
<img src="Bootstrap_new/images/new/favicon.png" alt="" style="max-height: 35px;">
<span class="d-none d-lg-block ms-2 fw-bold" style="color: var(--primary-color); letter-spacing: 1px;">INTER SANTÉ</span>
</a>
<i class="bi bi-list toggle-sidebar-btn fs-4 cursor-pointer"></i>
</div>
<nav class="header-nav ms-auto px-4">
<ul class="d-flex align-items-center list-unstyled mb-0">
<li class="nav-item dropdown pe-3">
<a class="nav-link" href="#" data-bs-toggle="dropdown">
<img src="Bootstrap_new/images/<?= $flag ?>" alt="<?= $alt ?>" width="20">
</a>
<ul class="dropdown-menu dropdown-menu-end shadow border-0">
<li><a class="dropdown-item" href="javascript:change_langue();"><i class="fa fa-exchange me-2"></i><?= _("Switch to English") ?></a></li>
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link nav-profile d-flex align-items-center" href="#" data-bs-toggle="dropdown">
<div class="rounded-circle d-flex align-items-center justify-content-center bg-primary text-white shadow-sm" style="width: 35px; height: 35px; font-size: 0.8rem; font-weight: bold;">
<?= $_SESSION['userInitials_C']; ?>
</div>
</a>
</li>
</ul>
</nav>
</header>