mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-24 17:52:41 +01:00
12 lines
333 B
PHP
Executable File
12 lines
333 B
PHP
Executable File
<div class="tabs">
|
|
<?php
|
|
foreach ($tabs as $tab):
|
|
if ($this->user()->permissions()->has('options.' . $tab)) :
|
|
?>
|
|
<a class="tabs-tab<?= ($tab === $current) ? ' active' : '' ?>" href="<?= $this->uri('/options/' . $tab . '/') ?>"><?= $this->label('options.' . $tab) ?></a>
|
|
<?php
|
|
endif;
|
|
endforeach;
|
|
?>
|
|
</div>
|