<?php use mystic\forum\orm\User; ?> <ul class="nav navbar-nav navbar-right"> <li><p class="navbar-text">Welcome, <?php if ($user->id === User::SUPERUSER_ID): ?> <strong class="text-danger"><?= htmlentities($user->displayName) ?></strong>! <?php else: ?> <strong><?= htmlentities($user->displayName) ?></strong>! <?php endif; ?> </p></li> <li><a href="?_action=viewuser&user=<?= htmlentities(urlencode($user->id)) ?>"><span class="glyphicon glyphicon-user" aria-hidden="true"></span><span class="sr-only">View profile</span></a></li> <li><a href="?_action=logout&next=<?= htmlentities(urlencode($_SERVER["REQUEST_URI"])) ?>"><span class="glyphicon glyphicon-log-out" aria-hidden="true"></span><span class="sr-only">Log out</span></a></li> </ul>