mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 22:01:59 +01:00
59 lines
3.2 KiB
Smarty
59 lines
3.2 KiB
Smarty
<?php if(Registry::get('username')) { ?>
|
|
|
|
<div class="row">
|
|
|
|
<div class="leftcell">
|
|
|
|
<div id="ss1">
|
|
<div class="row">
|
|
<div class="mcell" style="width: 80px;">
|
|
</div>
|
|
<div class="mcell" style="width: 350px; border: 0px solid red;">
|
|
|
|
<ul class="dropdown">
|
|
<li class="search_li" style=""><a href="search.php"<?php if($_SERVER['REQUEST_URI'] == '/' || strstr($_SERVER['REQUEST_URI'], "search.php")){ ?> id="active"<?php } ?>><?php print $text_simple; ?></a> / </li>
|
|
<li class="search_li" style=""><a href="advanced.php"<?php if(strstr($_SERVER['REQUEST_URI'], "advanced.php")){ ?> id="active"<?php } ?>><?php print $text_advanced; ?></a></li>
|
|
<li class="no_search_li" style=""><?php print $text_search2; ?> | </li>
|
|
|
|
<li class="search_li" style=""><a class="hide" href="#"<?php if(strstr($_SERVER['QUERY_STRING'], "stat/") || strstr($_SERVER['QUERY_STRING'], "health/") || strstr($_SERVER['QUERY_STRING'], "audit/") ) { ?> id="active"<?php } ?>><?php print $text_monitor; ?></a> |
|
|
<ul class="sub_menu">
|
|
<li><a href="index.php?route=stat/stat×pan=daily"><?php print $text_statistics; ?></a></li>
|
|
<li><a href="index.php?route=health/health"><?php print $text_health; ?></a></li>
|
|
<li><a href="index.php?route=audit/audit"><?php print $text_audit; ?></a></li>
|
|
</ul>
|
|
</li>
|
|
|
|
<li class="search_li" style=""><a class="hide" href="#"<?php if(strstr($_SERVER['QUERY_STRING'], "domain/") || ($_SERVER['QUERY_STRING'] != "route=user/settings" && strstr($_SERVER['QUERY_STRING'], "user/")) || strstr($_SERVER['QUERY_STRING'], "policy/") || strstr($_SERVER['QUERY_STRING'], "import/")) { ?> id="active"<?php } ?>><?php print $text_administration; ?></a>
|
|
<ul class="sub_menu">
|
|
<li><a href="index.php?route=user/list"><?php print $text_user_management; ?></a></li>
|
|
<li><a href="index.php?route=domain/domain"><?php print $text_domain; ?></a></li>
|
|
<li><a href="index.php?route=policy/archiving"><?php print $text_archiving_rules; ?></a></li>
|
|
<li><a href="index.php?route=policy/retention"><?php print $text_retention_rules; ?></a></li>
|
|
</ul>
|
|
</li>
|
|
|
|
</ul>
|
|
</div>
|
|
<div class="mcell" style="width: 60px; border: 0px solid red;">
|
|
<ul class="dropdown">
|
|
<li class="last_li" style="text-align: right; float: right;"><a href="settings.php"<?php if(strstr($_SERVER['REQUEST_URI'], "settings.php")){ ?> id="active"<?php } ?>><?php print $text_settings; ?></a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
<div class="rightcell">
|
|
<div class="logout22">
|
|
<?php if(isset($_SESSION['realname'])) { print $text_realname; ?>: <?php print $_SESSION['realname']; ?>, <?php } ?> <a class="logout" href="logout.php"<?php if(strstr($_SERVER['QUERY_STRING'], "login/logout")){ ?> id="active"<?php } ?>><?php print $text_logout; ?></a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<?php } ?>
|