Files
kanboard/app/Template/header/user_notifications.php
T

8 lines
431 B
PHP
Raw Normal View History

2026-06-01 21:23:12 -07:00
<span class="notification">
<?php if ($this->user->hasNotifications()): ?>
<?= $this->modal->mediumIcon('bell web-notification-icon', t('Unread notifications'), 'WebNotificationController', 'show', array('user_id' => $this->user->getId())) ?>
<?php else: ?>
<?= $this->modal->mediumIcon('bell', t('My notifications'), 'WebNotificationController', 'show', array('user_id' => $this->user->getId())) ?>
<?php endif ?>
</span>