bibb-theme/templates/search/.v
2026-02-24 07:35:06 +01:00

14 lines
576 B
Verilog
Executable File

<? if (count($searchTabs) > 0): ?>
<ul class="nav nav-tabs">
<? foreach ($searchTabs as $tab): ?>
<? if ($this->permission()->allowDisplay($tab['permission'])): ?>
<li<?=$tab['selected'] ? ' class="active"' : ''?>>
<a <?=$tab['selected'] ? '' : 'href="' . $this->escapeHtmlAttr($tab['url']) . '"' ?>><?=$this->transEsc($tab['label']); ?></a>
</li>
<? elseif ($block = $this->permission()->getAlternateContent($tab['permission'])): ?>
<?=$block?>
<? endif; ?>
<? endforeach; ?>
</ul>
<? endif; ?>