0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00
postfixadmin/templates/users_menu.tpl
2007-11-04 21:08:42 +00:00

23 lines
784 B
Smarty

<div id="menu">
<ul>
<li><a target="_top" href="<?php print $CONF['user_footer_link']; ?>"><?php print $PALANG['pMenu_main']; ?></a></li>
<?php if ($CONF['vacation'] == "YES") { ?>
<li><a target="_top" href="vacation.php"><?php print $PALANG['pUsersMenu_vacation']; ?></a></li>
<?php } ?>
<li><a target="_top" href="edit-alias.php"><?php print $PALANG['pUsersMenu_edit_alias']; ?></a></li>
<li><a target="_top" href="password.php"><?php print $PALANG['pUsersMenu_password']; ?></a></li>
<li><a target="_top" href="logout.php"><?php print $PALANG['pMenu_logout']; ?></a></li>
</ul>
</div>
<br clear='all' /><br>
<?php
if (file_exists (realpath ("../motd-users.txt")))
{
print "<div id=\"motd\">\n";
include ("../motd-users.txt");
print "</div>";
}
?>