You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
1.0 KiB
28 lines
1.0 KiB
<?php
|
|
if($nav && ($tabs=$nav->getTabs()) && is_array($tabs)){
|
|
foreach($tabs as $name =>$tab) {
|
|
if ($tab['href'][0] != '/')
|
|
$tab['href'] = ROOT_PATH . 'scp/' . $tab['href'];
|
|
echo sprintf('<li class="%s %s"><a href="%s">%s</a>',
|
|
$tab['active'] ? 'active':'inactive',
|
|
@$tab['class'] ?: '',
|
|
$tab['href'],$tab['desc']);
|
|
if(!$tab['active'] && ($subnav=$nav->getSubMenu($name))){
|
|
echo "<ul>\n";
|
|
foreach($subnav as $k => $item) {
|
|
if (!($id=$item['id']))
|
|
$id="nav$k";
|
|
if ($item['href'][0] != '/')
|
|
$item['href'] = ROOT_PATH . 'scp/' . $item['href'];
|
|
|
|
echo sprintf(
|
|
'<li><a class="%s" href="%s" title="%s" id="%s">%s</a></li>',
|
|
$item['iconclass'],
|
|
$item['href'], $item['title'],
|
|
$id, $item['desc']);
|
|
}
|
|
echo "\n</ul>\n";
|
|
}
|
|
echo "\n</li>\n";
|
|
}
|
|
} ?>
|