60261373b4be47b8c5c3b503a3fd7a4f3832e33b
bernd Erlaube Ă„nderung von Name u...

bernd authored 14 years ago

1) <?php
2) require_once('inc/base.php');
3) require_once('inc/icons.php');
4) 
5) require_once('useraccounts.php');
6) 
7) require_role(ROLE_SYSTEMUSER);
8) 
9) $title = "Benutzeraccount";
10) 
11) 
12) output("<h3>System-Benutzeraccount</h3>");
13) 
14) $shells = available_shells();
15) output("<p>Daten zu Ihrem Benutzeraccount:</p>");
16) $acc = get_account_details($_SESSION['userinfo']['uid'], $_SESSION['userinfo']['customerno']);
17) $shell = $shells[$acc['shell']];
18) $usedquota = get_used_quota($acc['uid']);
19) $quota = array();
20) foreach ($usedquota as $q)
21) {
22)   $percent = round(( $q["used"] / $q["quota"] ) * 100 );
23)   $color = ( $percent > 99 ? 'red' : ($percent > 80 ? "yellow" : "green" ));
24)   $width = 2 * min($percent, 100);
25)   $quota[] = "<p>Server <strong>{$q['server']}</strong><br />{$percent}%: {$q['used']} MB von {$q['quota']} MB belegt.</p> 
26)   <div style=\"margin: 0; padding: 0; width: 200px; border: 1px solid black;\"><div style=\"font-size: 1px; background-color: {$color}; height: 10px; width: {$width}px; margin: 0; padding: 0;\">&#160;</div></div>";
27) }
bernd Realname auch bei Nichtkund...

bernd authored 14 years ago

28) $customer = get_customer_info($_SESSION['userinfo']['customerno']);
29) $realname = $acc['name'] ? $acc['name'] : $customer['name'];