From f402e0c96a52c73ab390b76f637af3ccde6ac8b2 Mon Sep 17 00:00:00 2001 From: UMTS at Teleco Date: Fri, 14 Feb 2025 03:12:25 +0100 Subject: initial upload ... somewhat cleaned up and "less" swearing included --- common/navbar.php | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 common/navbar.php (limited to 'common/navbar.php') diff --git a/common/navbar.php b/common/navbar.php new file mode 100644 index 0000000..681f176 --- /dev/null +++ b/common/navbar.php @@ -0,0 +1,98 @@ +query("SELECT * FROM navbar ORDER BY id"); + while ($row = $navbarResult->fetchArray(SQLITE3_ASSOC)) { + $navbarItems[] = $row; + } + + // Function to render the navbar items im grosse navbar für normali mensche + function render_navbar($items, $currentPage) { + $leftItems = array_filter($items, fn($item) => $item['align'] === 'left'); + $centerItems = array_filter($items, fn($item) => $item['align'] === 'center'); + $rightItems = array_filter($items, fn($item) => $item['align'] === 'right'); + + echo ''; + echo ''; + echo ''; + } + + function render_navbar_items($items, $currentPage) { + foreach ($items as $item) { + $activeClass = ($item['link'] == "?page=$currentPage") ? ' class="active"' : ''; + switch ($item['type']) { + case 'title': + echo '' . htmlspecialchars($item['name']) . ''; + break; + case 'link': + echo '' . htmlspecialchars($item['name']) . ''; + break; + case 'drop down': + echo ''; + break; + case 'text field': + echo ''; + break; + case 'button': + echo ''; + break; + case 'custom': + echo $item['link_text']; + break; + case 'logo': + echo ''; + break; + case 'search': + echo ''; + break; + } + } + } + + // Function to render the mobile navbar für behindertes hamburger menu + function render_mobile_navbar($items, $menuExpanded) { + echo '
'; + echo ''; + echo '
'; + + // Separate the menu from the navbar panel will mir ned ganz normali mensche sind und euses menu mit post uf und zue gaht + if ($menuExpanded) { + echo '
'; + render_navbar_items(array_filter($items, fn($item) => $item['type'] !== 'logo' && $item['type'] !== 'title'), ''); + echo '
'; + } + } +} +?> \ No newline at end of file -- cgit v1.2.3-70-g09d2