Files
cf7-spam-to-telegram/admin/views/dashboard-widget.php
T
2026-04-21 17:16:34 +05:00

46 lines
1.9 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/** @var array<int,object> $failed */
/** @var int $failed_count */
/** @var int $pending */
/** @var int $sent_24h */
/** @var bool $configured */
/** @var string $settings_url */
/** @var bool $dry_run_on */
/** @var array $drop_counters */
?>
<?php if (!$configured): ?>
<p>⚙️ Плагин не настроен — укажите <b>Bot Token</b> и <b>Chat ID</b> в настройках.</p>
<?php endif; ?>
<p>
<span title="Ожидают отправки">⏳ В очереди: <b><?php echo (int)$pending; ?></b></span>
&nbsp;·&nbsp;
<span title="Успешно отправлено за последние сутки">✅ За сутки: <b><?php echo (int)$sent_24h; ?></b></span>
&nbsp;·&nbsp;
<span title="Не удалось доставить после ретраев">
<?php echo $failed_count > 0 ? '⚠️' : '✖'; ?> Ошибки: <b><?php echo (int)$failed_count; ?></b>
</span>
</p>
<p>
<?php if ($dry_run_on): ?>
Dry-run: за сегодня было бы дропнуто <b><?php echo (int)$drop_counters['dry_today']; ?></b>, всего <b><?php echo (int)$drop_counters['total']; ?></b>.
<?php else: ?>
Дропнуто сегодня: <b><?php echo (int)$drop_counters['real_today']; ?></b> (вчера <?php echo (int)$drop_counters['real_yesterday']; ?>, всего <?php echo (int)$drop_counters['total']; ?>).
<?php endif; ?>
</p>
<?php if ($failed_count > 0): ?>
<p style="margin-top:10px">Последние ошибки доставки (TG-API):</p>
<ul style="margin:0 0 8px 18px;list-style:disc">
<?php foreach ($failed as $row): ?>
<li>
<?php echo esc_html((string)$row->created_at); ?> —
<?php echo esc_html((string)$row->last_error); ?>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>
<p><a href="<?php echo esc_url($settings_url); ?>" class="button">Открыть настройки →</a></p>