34 lines
1.8 KiB
Smarty
34 lines
1.8 KiB
Smarty
<div id="menu">
|
|
<ul>
|
|
<?php if (count($list_domains) == 0 && $ROLE != ADMIN_ROLE) { ?>
|
|
<li><a target="_top" href="password.php"><?php echo $LANG['Menu_user_password']; ?></a></li>
|
|
<?php if (VACATION == "YES") { ?>
|
|
<li><a target="_top" href="vacation.php"><?php echo $LANG['Menu_user_vacation']; ?></a></li>
|
|
<?php } ?>
|
|
<?php } else {?>
|
|
<li><a target="_top" href="list-domain.php"><?php echo $LANG['Menu_list_domain']; ?></a></li>
|
|
<li><a target="_top" href="list-virtual.php<?php if (isset($domain)) echo '?domain=' . $domain; ?>"><?php echo $LANG['Menu_list_virtual']; ?></a></li>
|
|
<?php if ($ROLE == ADMIN_ROLE) { ?>
|
|
<li><a target="_top" href="list-admin.php"><?php echo $LANG['Menu_list_admin']; ?></a></li>
|
|
<li><a target="_top" href="backup.php"><?php echo $LANG['Menu_backup']; ?></a></li>
|
|
<li><a target="_top" href="domain.php"><?php echo $LANG['Menu_add_domain']; ?></a></li>
|
|
<li><a target="_top" href="admin.php"><?php echo $LANG['Menu_add_admin']; ?></a></li>
|
|
<?php } else {?>
|
|
<li><a target="_top" href="sendmail.php"><?php echo $LANG['Menu_sendmail']; ?></a></li>
|
|
<li><a target="_top" href="password.php"><?php echo $LANG['Menu_password']; ?></a></li>
|
|
<?php } ?>
|
|
<li><a target="_top" href="add-alias.php<?php if (isset($domain)) echo '?domain=' . $domain; ?>"><?php echo $LANG['Menu_add_alias']; ?></a></li>
|
|
<li><a target="_top" href="add-mailbox.php<?php if (isset($domain)) echo '?domain=' . $domain; ?>"><?php echo $LANG['Menu_add_mailbox']; ?></a></li>
|
|
<li><a target="_top" href="viewlog.php<?php if (isset($domain)) echo '?domain=' . $domain; ?>"><?php echo $LANG['Menu_viewlog']; ?></a></li>
|
|
<?php } ?>
|
|
<li><a target="_top" href="logout.php"><?php echo $LANG['Menu_logout']; ?></a></li>
|
|
</ul>
|
|
</div>
|
|
<?php
|
|
if (file_exists(realpath("motd.txt"))) {
|
|
echo '<div id="motd">';
|
|
include 'motd.txt';
|
|
echo '</div>';
|
|
}
|
|
?>
|