aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/side_navigation.php
diff options
context:
space:
mode:
authorwinter2025-01-18 22:58:58 +0000
committerwinter2025-01-18 22:58:58 +0000
commit981775d1b1965d21b99ca72a28a37d55d330a88a (patch)
treeb03b17f8bbd16d28aaf2003b9e07f86e333eac5f /templates/side_navigation.php
parentf1a48c521472bde1c8668e29f8c5c792e1dd9f9f (diff)
confirmation on logging out
Diffstat (limited to 'templates/side_navigation.php')
-rw-r--r--templates/side_navigation.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/side_navigation.php b/templates/side_navigation.php
index d9a2dfd..9b21833 100644
--- a/templates/side_navigation.php
+++ b/templates/side_navigation.php
@@ -1,7 +1,7 @@
<ul class="sideNavigation">
<?php foreach ($links as $entry): ?>
<li>
- <a href="<?= $entry['href'] ?>">
+ <a href="<?= $entry['href'] ?>" <?= ($entry['confirmation'] ?? null) ? ('hx-confirm="' . $entry['confirmation'] . '"') : '' ?>>
<div class="icon material-symbols-outlined"><?= $entry['icon'] ?></div>
<div><?= $entry['label'] ?></div>
<?php if (isset($entry['unreadCount']) && $entry['unreadCount'] > 0) {