Add configuration system

This commit is contained in:
Gogs
2026-07-06 17:17:31 +02:00
parent fe8342772d
commit 566ddacb2f
13 changed files with 318 additions and 176 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php if (!$channels): ?>
<div class="empty">
Keine Sender gefunden. Prüfe <code>/opt/tvguide-docker/epg/guide.xml</code>.
</div>
<?php endif; ?>
<?php foreach ($channels as $channelId => $channel): ?>
<?php View::render('channel', [
'channelId' => $channelId,
'channel' => $channel,
'programmes' => $programmes[$channelId] ?? []
]); ?>
<?php endforeach; ?>