modules/systemuser/myaccount.php
09edb607
 <?php
c208bd90
 /*
 This file belongs to the Webinterface of schokokeks.org Hosting
 
cf54502a
 Written 2008-2018 by schokokeks.org Hosting, namely
c208bd90
   Bernd Wurst <bernd@schokokeks.org>
   Hanno Böck <hanno@schokokeks.org>
 
 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.
 
2626dd47
 You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see
c208bd90
 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.
 */
 
09edb607
 require_once('inc/base.php');
 require_once('inc/icons.php');
 
 require_once('useraccounts.php');
 
 require_role(ROLE_SYSTEMUSER);
 
f2550e90
 title("Ihr Benutzeraccount");
92e8e2f9
 $section = "systemuser_account";
09edb607
 
 
 $shells = available_shells();
 output("<p>Daten zu Ihrem Benutzeraccount:</p>");
 $acc = get_account_details($_SESSION['userinfo']['uid'], $_SESSION['userinfo']['customerno']);
 $shell = $shells[$acc['shell']];
 $usedquota = get_used_quota($acc['uid']);
 $quota = array();
2626dd47
 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)";
52b4a714
         $mailbar = "<div style=\"font-size: 1px; background-color: blue; height: 10px; width: {$mailwidth}px; margin: 0; padding: 0; float: left;\">&#160;</div>";
2626dd47
     }
52b4a714
 
2626dd47
     $percent = round((($q["systemquota_used"]+$q["mailquota"]) / $q["systemquota"]) * 100);
     $color = ($percent > 99 ? 'red' : ($percent > 80 ? "yellow" : "green"));
     $width = 2 * min($percent, 100) - $mailwidth;
9086c9ad
 
2626dd47
     $used_space = $q['systemquota_used'] + $q['mailquota'];
     $quota[] = "<p>Server <strong>{$q['server']}</strong><br />{$percent}%: {$used_space} MB von {$q['systemquota']} MB belegt{$mailstring}.</p> 
52b4a714
         <div style=\"margin: 0; padding: 0; width: 200px; border: 1px solid black;\">{$mailbar}<div style=\"font-size: 1px; background-color: {$color}; height: 10px; width: {$width}px; margin: 0; margin-left: {$mailwidth}px; padding: 0;\">&#160;</div></div>";
09edb607
 }
60261373
 $customer = get_customer_info($_SESSION['userinfo']['customerno']);
 $realname = $acc['name'] ? $acc['name'] : $customer['name'];
09edb607
 $quotastring = implode('', $quota);
 output("<h5>Stammdaten</h5><div style=\"margin-left: 2em;\"><p>Benutzername: <strong>{$acc['username']}</strong></p><p>Name: {$realname}</p><p>Existiert seit {$acc['erstellungsdatum']}</p><p>Verwendete Shell: {$shell}</p>");
 output("<p>".internal_link('edit', other_icon('user_edit.png', 'Bearbeiten').' Daten bearbeiten').'</p>');
 output("</div>\n");
 output("<h5>Speicherplatz</h5><div style=\"margin-left: 2em;\">{$quotastring}</div>");
9086c9ad
 
09edb607
 output("<p><sup>*</sup>) Die Werte für den verbrauchten Speicherplatz werden periodisch eingelesen und hier erst verspätet angezeigt!</p>");