Hanno Böck This code is published under a 0BSD license. Nevertheless, in case you use a significant part of this code, we ask (but not require, see the license) that you keep the authors' names in place and return your changes to the public. We would be especially happy if you tell us what you're going to do with this code. */ require_once('inc/base.php'); require_once('inc/icons.php'); require_once('useraccounts.php'); require_role(ROLE_SYSTEMUSER); /* diese Datei wird auf der startseite eingebunden */ $acc = get_account_details($_SESSION['userinfo']['uid'], $_SESSION['userinfo']['customerno']); $usedquota = get_used_quota($acc['uid']); $quota = []; $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 = "
(davon {$q["mailquota"]} MB für Postfächer reserviert)"; $mailbar = "
 
"; } $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) { $msg = "

Server {$q['server']}
"; } $quota[] = $msg . "{$percent}%: {$used_space} MB von {$q['systemquota']} MB belegt{$mailstring}.

{$mailbar}
 
"; } $customer = get_customer_info($_SESSION['userinfo']['customerno']); $quotastring = implode('', $quota); $passwordlogin = ''; if (isset($_SESSION['loginmethod']) && $_SESSION['loginmethod'] == 'passkey' && $acc['passwordlogin'] == 1) { $passwordlogin = '

Die Anmeldung per SSH ist noch mit Passwort möglich. Das können Sie ' . internal_link($prefix . 'go/systemuser/edit', 'hier ändern') . '!

'; } output("
Stammdaten

Benutzername: {$acc['username']}

Servername" . ($multiserver ? " (primär)" : '') . ": " . get_server_by_id($acc['server']) . "

{$passwordlogin}

Tipp: Wiki-Anleitung zum Dateizugriff bzw. zum Ändern der Dateien Ihrer Website.

"); output("
\n"); output("
Speicherplatz
{$quotastring}
"); if (have_module('invoice') && $need_more_storage) { addnew('../invoice/more_storage?section=' . $section, 'Mehr Speicherplatz bestellen'); } output("

Die Werte für den verbrauchten Speicherplatz werden periodisch eingelesen und hier verzögert angezeigt!

");