icingaweb2/application/layouts/scripts/parts/navigation.phtml

17 lines
431 B
PHTML
Raw Normal View History

2014-02-18 19:16:03 +01:00
<div id="menu-header"><img src="<?= $this->href('img/logo_icinga-inv.png') ?>" style="height: 2em; width:6em; float: left; margin-left: 1.5em; margin-right: 9em; margin-top: 0.5em;" alt="" /></div>
<div id="menu">
<?php
2014-02-03 17:03:05 +01:00
if ($this->auth()->isAuthenticated()) {
echo $this->partial(
'parts/menu.phtml',
array(
'items' => $menu->getChildren(),
'url' => $url
)
);
2014-02-03 17:03:05 +01:00
}
2014-02-18 19:16:03 +01:00
?>
</div>