#6 Now custom client-side nav items can be added

This commit is contained in:
Mike Koch 2014-04-26 13:52:02 -04:00
parent 38dbe3233a
commit b1e54eb52a
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<!-- Here you can insert additional links and dropdowns to the top navigation bar on the client-side of the help desk. You can insert anything you like.
Some example code has been included below, and is commented out so it will not appear on the page. It is recommended to copy & paste the code you
want to use so you still have the samples included. You can use PHP code as well, by using the <?php //and ?> tags
-->
<!-- Use this block of code for a single link (such as the "Home" link) -->
<!-- <li><a href="link_here">Text to Display</a></li> -->
<!-- Use this block of code for a dropdown menu (such as the "ticket" dropdown) -->
<!-- <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown Text<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="#">Text to Display</a></li>
<li><a href="#">Text to Display</a></li>
</ul>
</li> -->

View File

@ -144,6 +144,7 @@ include(HESK_PATH . 'header.txt');
<?php if ($hesk_settings['kb_enable'])
{ ?>
<li><a href="<?php echo HESK_PATH; ?>knowledgebase.php"><?php echo $hesklang['kb_text'] ?></a></li> <?php } ?>
<?php include ('custom/header-custom.inc.php'); ?>
</ul>
</div><!-- /.navbar-collapse -->
</nav>