aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/unread_indicator.php
blob: ecfcb434b71ac7b961c3f2565724dd0602c328ae (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
use Digitigrade\Model\UserAccount;
use Digitigrade\UserSettings;

$user = UserAccount::findByCurrentSession();
$small = false;
if ($user != null) {
    $small = (new UserSettings($user))->getBool('interface.smallUnreadIndicators') ?? false;
}
?>
<span class="unreadIndicator <?= $small ? 'reduced' : '' ?>"><?= $count ?></span>