WKVS v 1.0.0

This commit is contained in:
Fabio Herzig
2026-07-24 21:49:40 +02:00
commit 6cb5386205
469 changed files with 76191 additions and 0 deletions
@@ -0,0 +1,16 @@
<header>
<a class="rankLiveHeaderTitle" href="/RankLive">
RankLive
</a>
<div class="menuLinksDiv">
<?php include __DIR__ ."/rankLive-menu.php"?>
</div>
<div class="burgerMenuDiv">
<div class="burgerMenuLine"></div>
<div class="burgerMenuLine"></div>
<div class="burgerMenuLine"></div>
</div>
</header>
<div class="sidebar">
<?php include __DIR__ ."/rankLive-menu.php"?>
</div>
+55
View File
@@ -0,0 +1,55 @@
<?php
if (!isset($guest) || !$guest instanceof mysqli) {
require $_SERVER['DOCUMENT_ROOT'] . "/../scripts/db/db-verbindung-script-guest.ph";
}
$result = $guest->query("SELECT `programm` FROM $db_tabelle_kategorien WHERE `aktiv` = '1'");
$yearsGalleryArray = [];
while ($row = $result->fetch_assoc()) {
$kategorien[str_replace(' ', '-', strtolower(htmlspecialchars($row['programm'])))] = htmlspecialchars($row['programm']);
}
?>
<a href="/RankLive/live" class="menu-item">
<svg class="menu-icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<circle cx="12" cy="12" r="10"/>
<polygon points="10 8 16 12 10 16 10 8"/>
</svg>
Aktueller Durchgang
</a>
<a href="/RankLive/" class="menu-item">
<svg class="menu-icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<line x1="18" y1="20" x2="18" y2="10"/>
<line x1="12" y1="20" x2="12" y2="4"/>
<line x1="6" y1="20" x2="6" y2="14"/>
</svg>
Alle Ergebnisse
</a>
<?php if ($kategorien !== []): ?>
<div>
<span class="menu-item">
<svg class="menu-icon" xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
<rect x="3" y="3" width="7" height="7"/>
<rect x="14" y="3" width="7" height="7"/>
<rect x="14" y="14" width="7" height="7"/>
<rect x="3" y="14" width="7" height="7"/>
</svg>
Kategorien
<svg class="menu-chevron" viewBox="0 0 16 16" width="14" height="14" aria-hidden="true" focusable="false" style="margin-left: auto;">
<path fill="none" stroke="currentColor" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" d="M2.5 5.5L8 11l5.5-5.5"></path>
</svg>
</span>
<div class="dropdown">
<?php foreach ($kategorien as $kat_slug => $kat_name) : ?>
<a href="/RankLive/programm/<?= $kat_slug ?>"><?= $kat_name ?></a>
<?php endforeach; ?>
</div>
</div>
<?php endif; ?>