1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
<?php if( !defined('POSTFIXADMIN') ) die( "This file cannot be used standalone." ); ?>
<div id="main_menu">
<table>
<tr>
<td> </td>
<td><?php print $_SESSION['sessid']['username']; ?></td>
</tr>
<?php if ($CONF['vacation'] == 'YES') { ?>
<tr>
<td nowrap><a target="_top" href="vacation.php"><?php print $PALANG['pUsersMenu_vacation']; ?></a></td>
<td><?php print $tummVacationtext; ?></td>
</tr>
<?php } ?>
<tr>
<td nowrap><a target="_top" href="edit-alias.php"><?php print $PALANG['pUsersMenu_edit_alias']; ?></a></td>
<td><?php print $PALANG['pUsersMain_edit_alias']; ?></td>
</tr>
<tr>
<td nowrap><a target="_top" href="password.php"><?php print $PALANG['pUsersMenu_password']; ?></a></td>
<td><?php print $PALANG['pUsersMain_password']; ?></td>
</tr>
<tr>
<td nowrap><a target="_top" href="logout.php"><?php print $PALANG['pMenu_logout']; ?></a></td>
<td><?php print $PALANG['pMain_logout']; ?></td>
</tr>
</table>
</div>
|