AlternC/bureau/admin/menu_mail.php

55 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/*
----------------------------------------------------------------------
AlternC - Web Hosting System
Copyright (C) 2000-2012 by the AlternC Development Team.
https://alternc.org/
----------------------------------------------------------------------
LICENSE
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License (GPL)
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
To read the license please visit http://www.gnu.org/copyleft/gpl.html
----------------------------------------------------------------------
*/
/* ############# MAILS ############# */
2009-09-08 05:29:38 +00:00
$q = $quota->getquota("mail");
$r = $quota->getquota("dom");
// there are some existing mail, or there is a domain AND quota authorize mail
if ($q["u"] > 0 || ( $r["u"] > 0 && $q['t'] > 0 )) {
2009-09-08 05:29:38 +00:00
?>
2009-09-08 05:29:38 +00:00
<div class="menu-box">
<div class="menu-title">
<a href="javascript:menu_toggle('menu-mail');">
<img src="images/mail.png" alt="<?php __("Email Addresses"); ?>" />&nbsp;<?php __("Email Addresses"); ?> (<?php echo $q["u"]; ?>/<?php echo $q["t"]; ?>)
<img src="images/row-down.png" alt="" style="float:right;"/></a>
</div>
2009-09-08 05:29:38 +00:00
<div class="menu-content" id="menu-mail">
<ul>
<?php
2009-09-08 05:29:38 +00:00
/* Enumeration des domlistes en mail : */
$domlist = $mail->enum_domains();
foreach($domlist as $l => $v){
2009-09-08 05:29:38 +00:00
?>
2012-08-25 15:32:49 +00:00
<li><a href="mail_list.php?domain_id=<?php echo urlencode($v["id"]) ?>"><?php echo $v["domaine"] ?> (<?php echo $v["nb_mail"]; ?>)</a></li>
<?php
}?>
2009-09-08 05:29:38 +00:00
</ul>
</div>
</div>
<?php
} // fin du if pour les quotas
?>