8 lines
431 B
PHP
8 lines
431 B
PHP
<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>
|