blob: 88a7015e8fd7695dc2b24a45df622676f7e2563d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | <?php
$nextParam = "";
switch ($GLOBALS["action"]) {
    case "auth":
    case "register":
        $nextParam = $_GET["next"] ?? "";
        break;
    default:
        $nextParam = $_SERVER["REQUEST_URI"];
}
if ($GLOBALS["action"] === "login")
?>
<ul class="nav navbar-nav navbar-right">
<li<?= $GLOBALS["action"] === "search" ? ' class="active"' : '' ?>><a href="?_action=search"><span class="glyphicon glyphicon-search" aria-hidden="true"></span><span class="sr-only"><?= __("Search") ?></span></a></li>
<li<?= $GLOBALS["action"] === "auth" ? ' class="active"' : '' ?>><a href="?_action=auth&next=<?= htmlentities(urlencode($nextParam)) ?>"><?= __("Log in") ?></a></li>
<?php if (REGISTRATION_ENABLED): ?>
<li<?= $GLOBALS["action"] === "register" ? ' class="active"' : '' ?>><a href="?_action=register&next=<?= htmlentities(urlencode($nextParam)) ?>"><?= __("Register") ?></a></li>
<?php endif; ?>
</ul>
 |