mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-22 16:56:50 +01:00
12 lines
345 B
PHP
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>
|