aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/actor/profile_block_button.php
blob: 98ed4384f1d24e69aa5002f3c6230018ec21ad01 (plain)
1
2
3
4
5
6
7
8
9
<?php
$blocks = $user->actor->blocks($actor);
$action = $blocks ? 'unblock' : 'block';
?>
<button hx-confirm="<?= __("user.profile.$action.confirm") ?>" hx-post="/fragment/actor/<?= $actor->id ?>/blockButton"
    hx-swap="outerHTML" hx-target="this">
    <span class="material-symbols <?= $blocks ? 'remove' : 'block' ?>"></span>
    <span><?= __("user.profile.$action") ?></span>
</button>