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