Hanno Böck This code is published under a 0BSD license. 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([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 = ''; $form .= '
Name (E-Mail-Absender, ...)

'; $defaultpwlogin = 'checked'; $defaultnopwlogin = ''; if ($account['passwordlogin'] == 0) { $defaultpwlogin = ''; $defaultnopwlogin = 'checked'; } $form .= '
Passwort-Login

'; 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));