blob: 39f52b51764d5c81e8c7d95a003c2731e987ace0 (
plain)
1
2
3
4
5
6
7
8
|
<?php defined("SYSPATH") or die("No direct script access.") ?>
<li>
<? $name = $menu->label->for_html() ?>
<? $hover_text = Identity::is_writable() ? t("Edit your profile")->for_html_attr() :
t("Display your profile")->for_html_attr() ?>
<?= t("Logged in as %name", array("name" => html::mark_clean(
"<a href='$menu->url' title='$hover_text' id='$menu->id'>{$name}</a>"))) ?>
</li>
|