mirror of
https://codeberg.org/PostERG/xamxam.git
synced 2026-05-06 19:19:19 +02:00
86 lines
4.2 KiB
PHP
86 lines
4.2 KiB
PHP
<?php
|
|
// header.php — unified site header for public and admin sections.
|
|
// Reads: $isAdmin (bool), $currentNav (string, public only)
|
|
$_isAdmin = !empty($isAdmin);
|
|
$_navCurrent = $currentNav ?? '';
|
|
$_currentPage = basename($_SERVER['PHP_SELF']);
|
|
$_thesisId = $_GET['id'] ?? null;
|
|
?>
|
|
<header>
|
|
<a href="#main-content" class="skip-link">Aller au contenu principal</a>
|
|
|
|
<?php if ($_isAdmin): ?>
|
|
|
|
<nav aria-label="Navigation admin">
|
|
<a href="/" target="_blank" rel="noopener noreferrer">
|
|
<svg aria-hidden="true" xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" viewBox="0 0 256 256"><path d="M208,72H128V32a8,8,0,0,0-13.66-5.66l-96,96a8,8,0,0,0,0,11.32l96,96A8,8,0,0,0,128,224V184h80a16,16,0,0,0,16-16V88A16,16,0,0,0,208,72Zm0,96H120a8,8,0,0,0-8,8v28.69L35.31,128,112,51.31V80a8,8,0,0,0,8,8h88Z"></path></svg>Posterg<span class="sr-only"> (site public, nouvel onglet)</span>
|
|
</a>
|
|
<ul>
|
|
<li><a href="/admin/" <?= $_currentPage === 'index.php' ? 'aria-current="page"' : '' ?>>Liste des TFE</a></li>
|
|
<li><a href="/admin/add.php" <?= $_currentPage === 'add.php' ? 'aria-current="page"' : '' ?>>Ajouter un TFE</a></li>
|
|
<li><a href="/admin/import.php" <?= $_currentPage === 'import.php' ? 'aria-current="page"' : '' ?>>Importer une liste de TFE</a></li>
|
|
<li><a href="/admin/pages.php" <?= in_array($_currentPage, ['pages.php', 'pages-edit.php']) ? 'aria-current="page"' : '' ?>>Pages statiques</a></li>
|
|
<li><a href="/admin/tags.php" <?= $_currentPage === 'tags.php' ? 'aria-current="page"' : '' ?>>Mots-clés</a></li>
|
|
<li><a href="/admin/system.php" <?= in_array($_currentPage, ['system.php', 'status.php', 'logs.php']) ? 'aria-current="page"' : '' ?>>Système</a></li>
|
|
<li><a href="/admin/account.php" <?= $_currentPage === 'account.php' ? 'aria-current="page"' : '' ?>>Compte</a></li>
|
|
<?php if ($_thesisId && in_array($_currentPage, ['edit.php', 'thanks.php'])): ?>
|
|
<li><a href="/admin/edit.php?id=<?= intval($_thesisId) ?>" <?= $_currentPage === 'edit.php' ? 'aria-current="page"' : '' ?>>Modifier</a></li>
|
|
<?php endif; ?>
|
|
<?php if (defined('ADMIN_PASSWORD_HASH')): ?>
|
|
<li data-nav-logout><a href="/admin/logout.php">Déconnexion</a></li>
|
|
<?php endif; ?>
|
|
</ul>
|
|
</nav>
|
|
|
|
<?php else: ?>
|
|
|
|
<nav aria-label="Navigation principale">
|
|
<div class="nav-left">
|
|
<a href="/index.php">Xamxam</a>
|
|
<ul class="nav-left-links">
|
|
<li>
|
|
<a href="/repertoire.php"
|
|
<?= ($_navCurrent === 'repertoire') ? 'aria-current="page"' : '' ?>>Répertoire</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<ul class="nav-right-links">
|
|
<li>
|
|
<a href="/licence.php"
|
|
<?= ($_navCurrent === 'licence') ? 'aria-current="page"' : '' ?>>Licences</a>
|
|
</li>
|
|
<li>
|
|
<a href="/apropos.php"
|
|
<?= ($_navCurrent === 'apropos') ? 'aria-current="page"' : '' ?>>À Propos</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
|
|
<?php
|
|
// Search bar — public section only
|
|
$searchBarValue = $searchBarValue ?? $_GET['query'] ?? '';
|
|
?>
|
|
<div class="header-search-wrap">
|
|
<form method="GET" action="/repertoire.php"
|
|
role="search" aria-label="Recherche">
|
|
<label for="site-search-input" class="sr-only">Recherche</label>
|
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"
|
|
fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"
|
|
aria-hidden="true" focusable="false">
|
|
<circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/>
|
|
</svg>
|
|
<input
|
|
id="site-search-input"
|
|
type="text"
|
|
name="query"
|
|
placeholder="Recherche..."
|
|
value="<?= htmlspecialchars($searchBarValue) ?>"
|
|
autocomplete="off"
|
|
>
|
|
</form>
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
</header>
|