2022-11-27 21:21:19 +01:00

12 lines
345 B
PHP

<div class="tabs">
<?php
foreach ($tabs as $tab):
if ($panel->user()->permissions()->has('options.' . $tab)) :
?>
<a class="tabs-tab<?= ($tab === $current) ? ' active' : '' ?>" href="<?= $panel->uri('/options/' . $tab . '/') ?>"><?= $this->translate('panel.options.' . $tab) ?></a>
<?php
endif;
endforeach;
?>
</div>