Skip to content
This repository has been archived by the owner on Mar 19, 2021. It is now read-only.

Commit

Permalink
topnavbar: user dropdown menu extended
Browse files Browse the repository at this point in the history
This adds a few more items to the user dropdown menu in the top navigation bar,
which refer to the documentation, mailinglists, bugtracker, support and
subscription service.
  • Loading branch information
fbergkemper committed Oct 26, 2016
1 parent e6a7f20 commit 6bfd2d6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion module/Application/view/layout/layout.phtml
Expand Up @@ -91,7 +91,11 @@ echo $this->doctype();
<span class="glyphicon glyphicon-user" aria-hidden="true"></span>&nbsp;<?php echo $_SESSION['bareos']['username']; ?> <span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="http://doc.bareos.org" target="_blank"><?php echo $this->translate("Help"); ?></a></li>
<li><a href="http://doc.bareos.org" target="_blank"><?php echo $this->translate("Documentation"); ?></a></li>
<li><a href="https://www.bareos.org/en/open-source.html" target="_blank"><?php echo $this->translate("Mailinglists"); ?></a></li>
<li><a href="https://bugs.bareos.org/" target="_blank"><?php echo $this->translate("Bugtracker"); ?></a></li>
<li><a href="http://www.bareos.com/en/Support.html" target="_blank"><?php echo $this->translate("Support"); ?></a></li>
<li><a href="http://www.bareos.com/en/Subscription.html" target="_blank"><?php echo $this->translate("Subscription"); ?></a></li>
<li role="separator" class="divider"></li>
<li><a href="<?php echo $this->url('auth', array('action' => 'logout')); ?>"><?php echo $this->translate("Logout"); ?></a></li>
</ul>
Expand Down

0 comments on commit 6bfd2d6

Please sign in to comment.