blob: 4162d23040e7a551b58f942ea93951b05150886b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
use Digitigrade\Model\Note;
$icon = $note->countReplies() > 0 ? 'reply_all' : 'reply';
$id = "interactButton-reply-$note->id";
?>
<div class="interactButtonContainer reply">
<button title="<?= __('note.action.reply') ?>" class="icon material-symbols-outlined reply" id="<?= $id ?>"
_="on click send toggle to [me, next .noteReplyForm] on toggle toggle .active on closest <div/>"><?= $icon ?></button>
<label for="<?= $id ?>"><?= $count ?? '' ?></label>
</div>
|