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('useraccounts.php'); require_role(array(ROLE_CUSTOMER, ROLE_SYSTEMUSER)); title("System-Benutzeraccounts"); $section = "systemuser_account"; $account = null; $role = $_SESSION['role']; if ($role & ROLE_CUSTOMER) { $account = get_account_details($_GET['uid']); } else { $account = get_account_details($_SESSION['userinfo']['uid'], $_SESSION['userinfo']['customerno']); } headline("Bearbeiten von Benutzer »{$account['username']}«"); #if (customer_useraccount($account['uid'])) # system_failure('Aus Sicherheitsgründen können Sie diesen Account nicht ändern!'); $shells = available_shells(); $defaultname = ($account['name'] ? '' : 'checked="checked" '); $nondefaultname = ($account['name'] ? 'checked="checked" ' : ''); $customerquota = get_customer_quota(); $maxquota = $customerquota['max'] - $customerquota['assigned'] + $account['quota']; $customer = get_customer_info($_SESSION['userinfo']['customerno']); if ($role & ROLE_CUSTOMER) { $customer = $_SESSION['customerinfo']; } $form = '
Name (E-Mail-Absender, ...)

'; if ($role & ROLE_CUSTOMER) { $form .= '
Speicherplatz

Wenn Sie mehrere Benutzeraccounts haben, können Sie den verfügbaren Speicherplatz selbst auf diese Accounts verteilen, bis diese zusammen das Limit erreichen, das für Ihr Kundenkonto vereinbart wurde (aktuell insgesamt '.$customerquota['max'].' MB).

MB (Maximal '.$maxquota.' MB möglich.)

'; } $form .= '
Shell

Hier können Sie eine andere Kommandozeile einstellen. Tun Sie das bitte nur, wenn Sie wissen was Sie tun. Möchten Sie gerne eine Shell benutzen, die hier nicht aufgeführt ist, wenden Sie sich bitte an den Support.

'.html_select('shell', $shells, $account['shell']).'

'; output(html_form('systemuser_edit', 'save', 'action=edit&uid='.$account['uid'], $form));