18 lines
825 B
PHTML
Executable File
18 lines
825 B
PHTML
Executable File
<? if (count($searchTabs) > 0): ?>
|
|
<ul class="nav nav-tabs">
|
|
<? foreach ($searchTabs as $tab): ?>
|
|
<? if ($this->permission()->allowDisplay($tab['permission'])): ?>
|
|
<li<?=$tab['selected'] ? ' option selected="selected" ' : ''?>>
|
|
<a <?=$tab['selected'] ? ' style="color:#448001; font-weight:bold"' : 'href="' . $this->escapeHtmlAttr($tab['url']) . '"' ?>><?=$this->transEsc($tab['label']); ?></a>
|
|
</li>
|
|
<? elseif ($block = $this->permission()->getAlternateContent($tab['permission'])): ?>
|
|
<?=$block?>
|
|
<? endif; ?>
|
|
<? endforeach; ?>
|
|
<li option value="" selected="selected">
|
|
<a href="/vufind/Authority/Home" style="color:#448001; font-weight:bold"><?=$this->transEsc("Search Authority File");?></a>
|
|
</option>
|
|
</li>
|
|
</ul>
|
|
<? endif; ?>
|