<?php
require_once('inc/base.php');
require_once('inc/icons.php');
require_once('useraccounts.php');
require_role(ROLE_CUSTOMER);
title("System-Benutzeraccounts");
if (! customer_may_have_useraccounts()) {
warning("Sie haben bisher keine Benutzeraccounts. Der erste (»Stamm-«)Account muss von einem Administrator angelegt werden.");
} else {
$accounts = list_useraccounts();
$shells = available_shells();
output("<p>Folgende Benutzeraccounts haben Sie bisher:</p>");
output("<table><tr><th>Benutzeraccount</th><th>Speicherplatz<sup>*</sup></th><th>Aktionen</th></tr>");
foreach ($accounts as $acc) {
$shell = $shells[$acc['shell']];
$usedquota = get_used_quota($acc['uid']);
$quota = array();
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"));