-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathnav.php
20 lines (19 loc) · 1.19 KB
/
nav.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<nav class="navbar navbar-dark bg-dark">
<a class="navbar-brand color-f minefont" href=<?php echo get_main_path(); ?>>MarketPlace</a>
<?php if(WEB_ACCOUNTS_ENABLED) { ?>
<div class="float-right">
<?php $pending_claims = pending_to_claim(); if($GLOBALS["logged"]){ if(CONTEXT!="profile"){ ?>
<span class="mx-2 color-6 minefont"><?php echo price_format($GLOBALS["account"]->money); ?></span>
<a class="text-white btn btn-primary my-2 my-sm-0 mr-3 color-f minefont" href="./<?php echo get_path("profile"); ?>" <?php if($pending_claims){ echo 'data-toggle="tooltip data-placement="bottom" title="You have '.$pending_claims.' item to claim"'; } ?>>Profile <?php
if($pending_claims>0) { ?>
<span class="badge badge-light"> <?php echo $pending_claims; ?> </span>
<?php } ?>
</a>
<?php } ?>
<a class="text-danger btn btn-outline-danger my-2 my-sm-0 color-c minefont" href="./<?php echo get_path("logout"); ?>">Log out</a>
<?php }else{ ?>
<a class="text-white btn btn-primary my-2 my-sm-0 color-f minefont" href="./<?php echo get_path("login"); ?>">Log in</a>
<?php } ?>
</div>
<?php } ?>
</nav>