<?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;
$need_more_storage = false;
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);
if ($percent > 90) {
$need_more_storage = true;
}
$color = ($percent > 99 ? 'red' : ($percent > 80 ? "yellow" : "green"));
$width = 2 * min($percent, 100) - $mailwidth;
$used_space = $q['systemquota_used'] + $q['mailquota'];
$msg = "";
if ($multiserver) {