aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/reply_button.php
blob: b86a21f835847c019219869436fee1d2c1d287c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?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 ?>"
        <?= ($disabled ?? false) ? 'disabled' : '' ?>
        _="on click send toggle to [me, next .noteReplyForm] on toggle toggle .active on closest <div/>"><?= $icon ?></button>
    <label for="<?= $id ?>"><?= $count ?? '' ?></label>
</div>