blob: f82cc9a6d50956ae9987924d7df8f913cc438de4 (
plain)
1
2
3
4
5
6
7
|
<?php
$blocks = $user->actor->blocks($actor);
$action = $blocks ? 'unblock' : 'block';
?>
<button class="material-symbols <?= $blocks ? 'remove' : 'block' ?>" title="<?= __("user.profile.$action") ?>"
hx-confirm="<?= __("user.profile.$action.confirm") ?>" hx-post="/fragment/actor/<?= $actor->id ?>/blockButton"
hx-swap="outerHTML"></button>
|