blob: 681f176c85c044519dc1a76957633cba3ec1321c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
<?php
if ($navbarTableExists && $navbarHasEntries) {
// Fetch navbar items from the database and render them for nicht behindertes navbar ohni js <3
$navbarItems = [];
$navbarResult = $db->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 '<div class="navbar-left">';
render_navbar_items($leftItems, $currentPage);
echo '</div>';
echo '<div class="navbar-center">';
render_navbar_items($centerItems, $currentPage);
echo '</div>';
echo '<div class="navbar-right">';
render_navbar_items($rightItems, $currentPage);
echo '</div>';
}
function render_navbar_items($items, $currentPage) {
foreach ($items as $item) {
$activeClass = ($item['link'] == "?page=$currentPage") ? ' class="active"' : '';
switch ($item['type']) {
case 'title':
echo '<span class="navbar-title">' . htmlspecialchars($item['name']) . '</span>';
break;
case 'link':
echo '<a href="' . htmlspecialchars($item['link']) . '"' . $activeClass . '>' . htmlspecialchars($item['name']) . '</a>';
break;
case 'drop down':
echo '<div class="navbar-dropdown">';
echo '<a class="navbar-dropbtn" href="#">' . htmlspecialchars($item['name']) . '</a>';
echo '<div class="navbar-dropdown-content">';
foreach ($items as $dropdownItem) {
if ($dropdownItem['type'] === 'drop down entry' && $dropdownItem['name'] === $item['name']) {
echo '<a href="' . htmlspecialchars($dropdownItem['link']) . '">' . htmlspecialchars($dropdownItem['link_text']) . '</a>';
}
}
echo '</div>';
echo '</div>';
break;
case 'text field':
echo '<input type="text" placeholder="' . htmlspecialchars($item['name']) . '">';
break;
case 'button':
echo '<button onclick="location.href=\'' . htmlspecialchars($item['link']) . '\'">' . htmlspecialchars($item['name']) . '</button>';
break;
case 'custom':
echo $item['link_text'];
break;
case 'logo':
echo '<img src="' . htmlspecialchars($item['link']) . '" alt="' . htmlspecialchars($item['name']) . '" class="navbar-logo">';
break;
case 'search':
echo '<input type="search" placeholder="' . htmlspecialchars($item['name']) . '">';
break;
}
}
}
// Function to render the mobile navbar für behindertes hamburger menu
function render_mobile_navbar($items, $menuExpanded) {
echo '<div class="mobile-navbar-panel">';
echo '<div class="navbar-header">';
foreach ($items as $item) {
if ($item['type'] === 'logo') {
echo '<img src="' . htmlspecialchars($item['link']) . '" alt="' . htmlspecialchars($item['name']) . '" class="navbar-logo">';
}
if ($item['type'] === 'title') {
echo '<span class="navbar-title">' . htmlspecialchars($item['name']) . '</span>';
}
}
$toggleState = $menuExpanded ? 0 : 1;
echo '<form method="get" action="" style="display:inline;">';
echo '<input type="hidden" name="menu" value="' . $toggleState . '">';
echo '<button type="submit" class="navbar-toggle">' . ($menuExpanded ? 'Collapse' : 'Expand') . '</button>';
echo '</form>';
echo '</div>';
echo '</div>';
// 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 '<div class="mobile-navbar-menu">';
render_navbar_items(array_filter($items, fn($item) => $item['type'] !== 'logo' && $item['type'] !== 'title'), '');
echo '</div>';
}
}
}
?>
|