Hanno Böck To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty. You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see https://creativecommons.org/publicdomain/zero/1.0/ 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 = 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 = "
(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); output("
Stammdaten

Benutzername: {$acc['username']}

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

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!

");