blob: af360009e533fe0f0edd0b07115cbd0420e5a41f (
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="material-symbols <?= $icon ?>" id="<?= $id ?>" <?= ($disabled ?? false) ? 'disabled' : '' ?>
_="on click send toggle to [me, next .noteReplyForm] on toggle toggle .active on closest <div/>"></button>
<label for="<?= $id ?>"><?= $count ?? '' ?></label>
</div>
|