36 lines
1.4 KiB
PHP
36 lines
1.4 KiB
PHP
<?php
|
|
$settings = modules()->settings('pihole');
|
|
$instances = module_fn('pihole', 'instances');
|
|
$hasConfig = !empty($instances);
|
|
$refreshSeconds = (int)($settings['queries_refresh_sec'] ?? 5);
|
|
if ($refreshSeconds < 0) {
|
|
$refreshSeconds = 5;
|
|
}
|
|
?>
|
|
<div class="pihole-content pihole-page" data-pihole-page="queries" data-refresh-seconds="<?= e((string)$refreshSeconds) ?>">
|
|
<?php if (!$hasConfig): ?>
|
|
<div class="window-app-card pihole-card">
|
|
<strong>Keine Instanzen konfiguriert</strong>
|
|
<div class="muted" style="margin-top:.35rem;">Bitte zuerst eine Pi-hole Instanz hinzufuegen.</div>
|
|
<div style="margin-top:.75rem;"><a class="window-app-nav-button pihole-link-button" href="/apps/pihole/index.php?view=instances">Instanzen verwalten</a></div>
|
|
</div>
|
|
<?php else: ?>
|
|
<div class="pihole-split">
|
|
<div class="window-app-card pihole-card">
|
|
<div class="pihole-section-header">
|
|
<strong>Aktuelle Blockings</strong>
|
|
<span class="muted">Letzte geblockte Domains</span>
|
|
</div>
|
|
<div class="pihole-blocked" data-recent-blocked></div>
|
|
</div>
|
|
<div class="window-app-card pihole-card">
|
|
<div class="pihole-section-header">
|
|
<strong>Top Clients (Aggregiert)</strong>
|
|
<span class="muted">Anfragen nach Client</span>
|
|
</div>
|
|
<div class="pihole-list" data-top-clients></div>
|
|
</div>
|
|
</div>
|
|
<?php endif; ?>
|
|
</div>
|