aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/note/reply_button.php
blob: dadc1213d060b15764d8182a95e9f0b939c79362 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
use Digitigrade\Model\Note;

/** @var Note $note */

$icon = $note->inReplyTo == null ? 'reply' : 'reply-all';
$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>