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 http://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_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("

Folgende Benutzeraccounts haben Sie bisher:

"); output(""); 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 = "
(davon {$q["mailquota"]} MB für Postfächer reserviert)"; $mailbar = "
 
"; } $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']; $quota[] = "

Server {$q['server']}
{$percent}%: {$used_space} MB von {$q['systemquota']} MB belegt{$mailstring}.

{$mailbar}
 
"; } $realname = $acc['name'] ? $acc['name'] : $_SESSION['customerinfo']['name']; $quotastring = implode('', $quota); output(""); output(""); output("\n"); } output("
BenutzeraccountSpeicherplatz*Aktionen

{$acc['username']} - {$realname}

Existiert seit {$acc['erstellungsdatum']}
Verwendete Shell: {$shell}

{$quotastring}".internal_link('edit', other_icon('user_edit.png', 'Bearbeiten'), "uid={$acc['uid']}")); if (! customer_useraccount($acc['uid'])) { output("   ".internal_link('pwchange', icon_pwchange('Passwort neu setzen'), "uid={$acc['uid']}")); #output("   ".internal_link('deluser', other_icon('user_delete.png', 'Benutzer löschen'), "uid={$acc['uid']}")); } output("

*) Die Werte für den verbrauchten Speicherplatz werden periodisch eingelesen und hier erst verspätet angezeigt!

"); $customerquota = get_customer_quota(); $freequota = $customerquota['max'] - $customerquota['assigned']; if ($freequota > 10) { // Gewisse Unschärfe $percent = round(($customerquota['assigned'] / $customerquota['max']) * 100); $width = 5 * min($percent, 100); $color = ($percent > 99 ? 'red' : ($percent > 80 ? "yellow" : "green")); $maxstr = ($customerquota['max'] > 1024) ? number_format($customerquota['max'] / 1024, 1, ',', '.').' GB' : $customerquota['max'].' MB'; $assignedstr = ($customerquota['assigned'] > 1024) ? number_format($customerquota['assigned'] / 1024, 1, ',', '.').' GB' : $customerquota['assigned'].' MB'; $freestr = ($freequota > 1024) ? number_format($freequota / 1024, 1, ',', '.').' GB' : $freequota.' MB'; output('

Ihrem Kundenaccount stehen insgesamt '.$maxstr.' zur Verfügung, davon sind '.$assignedstr.' den Benutzerkonten zugewiesen und noch '.$freestr.' frei verfügbar.

'); output("
 
"); output('

Hinweis:
Ihnen steht mehr Speicherplatz zur Verfügung als Ihren Benutzeraccounts zugewiesen ist. Sie können den Speicherplatz der einzelnen Benutzerkonten noch erhöhen.

'); } else { output('

Der für Sie reservierte Speicherplatz ist vollständig auf Ihre Benutzeraccounts verteilt.

'); if (have_module('invoice')) { addnew('../invoice/more_storage?section=systemuser_account', 'Mehr Speicherplatz bestellen'); } } }