46 lines
1.6 KiB
PHP
46 lines
1.6 KiB
PHP
<?php if ($saved): ?>
|
|
<div class="notice">Sender gespeichert.</div>
|
|
<?php endif; ?>
|
|
|
|
<form method="post" class="settings-form">
|
|
<div class="settings-header">
|
|
<div>
|
|
<h2>Senderverwaltung</h2>
|
|
<p class="settings-subtitle">Aktiviere Sender, markiere Favoriten und ändere die Reihenfolge.</p>
|
|
</div>
|
|
<button type="submit">Speichern</button>
|
|
</div>
|
|
|
|
<div class="channel-settings-list">
|
|
<?php foreach ($channelConfig as $id => $channel): ?>
|
|
<article class="channel-settings-card">
|
|
<div class="channel-settings-main">
|
|
<label class="switch-row">
|
|
<input type="checkbox" name="enabled[<?= htmlspecialchars($id) ?>]" <?= !empty($channel['enabled']) ? 'checked' : '' ?>>
|
|
<span class="channel-settings-title"><?= htmlspecialchars($channel['name'] ?? $id) ?></span>
|
|
</label>
|
|
|
|
<div class="channel-id"><?= htmlspecialchars($id) ?></div>
|
|
</div>
|
|
|
|
<div class="channel-settings-fields">
|
|
<label>
|
|
Nummer
|
|
<input class="number-input" type="number" name="number[<?= htmlspecialchars($id) ?>]" value="<?= (int)($channel['number'] ?? 999999) ?>">
|
|
</label>
|
|
|
|
<label>
|
|
Gruppe
|
|
<input type="text" name="group[<?= htmlspecialchars($id) ?>]" value="<?= htmlspecialchars($channel['group'] ?? 'Unknown') ?>">
|
|
</label>
|
|
|
|
<label class="favorite-toggle">
|
|
<input type="checkbox" name="favorite[<?= htmlspecialchars($id) ?>]" <?= !empty($channel['favorite']) ? 'checked' : '' ?>>
|
|
⭐ Favorit
|
|
</label>
|
|
</div>
|
|
</article>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
</form>
|