aboutsummaryrefslogtreecommitdiff
path: root/templates/blubber/disable-notifications.php
blob: a3a63c400947f321f152ec56e9c921535fde87d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<? if (!$GLOBALS['perm']->have_perm("admin")) : ?>
    <div class="indented new_section">
        <a href="#"
           onClick="STUDIP.Blubber.followunfollow('<?= htmlReady($thread->id) ?>'); return false;"
           class="followunfollow<?= $unfollowed ? " unfollowed" : "" ?>"
           title="<?= _("Benachrichtigungen für diese Konversation abstellen.") ?>"
           data-thread_id="<?= htmlReady($thread->id) ?>">
            <?= Icon::create("decline")->asImg(20, ['class' => "follow text-bottom"]) ?>
            <?= Icon::create("notification2")->asImg(20, ['class' => "unfollow text-bottom"]) ?>
            <?= _("Benachrichtigungen aktiviert") ?>
        </a>
    </div>
<? endif ?>