<?php
require_once('inc/base.php');
require_once('inc/icons.php');
require_once('useraccounts.php');
require_role(ROLE_SYSTEMUSER);
$acc = get_account_details($_SESSION['userinfo']['uid'], $_SESSION['userinfo']['customerno']);
$usedquota = get_used_quota($acc['uid']);
$quota = array();
$multiserver = count($usedquota) > 1;
foreach ($usedquota as $q)
{
$mailbar = '';
$mailstring = '';
$mailpercent = round(( $q['mailquota'] / $q["systemquota"]) * 100);
$mailwidth = 2 * min($mailpercent, 100);
if ($q["mailquota"] > 0) {
$mailstring = "<br />(davon {$q["mailquota"]} MB für Postfächer reserviert)";
$mailbar = "<div style=\"font-size: 1px; background-color: blue; height: 10px; width: {$mailwidth}px; margin: 0; padding: 0; float: left;\"> </div>";
}
$percent = round(( ($q["systemquota_used"]+$q["mailquota"]) / $q["systemquota"] ) * 100 );
$color = ( $percent > 99 ? 'red' : ($percent > 80 ? "yellow" : "green" ));
$width = 2 * min($percent, 100) - $mailwidth;
$used_space = $q['systemquota_used'] + $q['mailquota'];
$msg = "";
if ($multiserver) {
$msg = "<p>Server <strong>{$q['server']}</strong><br />";
}
$quota[] = $msg."{$percent}%: {$used_space} MB von {$q['systemquota']} MB belegt{$mailstring}.</p>