14 lines
576 B
Verilog
Executable File
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; ?>
|