blob: aeaeabd9b88602f734c1c7d52bd4bc6d800a087e (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
use Digitigrade\Model\Note;
$icon = count(Note::findAllInThread($note, 2)) > 1 ? '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>
|