blob: f7900dd565be47974b6e2e57c33f8299253beacc (
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')->asSvg(['class' => 'follow text-bottom']) ?>
<?= Icon::create('notification2')->asSvg(['class' => 'unfollow text-bottom']) ?>
<?= _('Benachrichtigungen aktiviert') ?>
</a>
</div>
<? endif ?>
|