general_username = $_POST['f_general_username']; else $_SESSION['account']->general_username = $_POST['f_general_username']; if ($_POST['f_general_surname']) $_SESSION['account']->general_surname = $_POST['f_general_surname']; else $_SESSION['account']->general_surname = ""; if ($_POST['f_general_givenname']) $_SESSION['account']->general_givenname = $_POST['f_general_givenname']; else $_SESSION['account']->general_givenname = ""; if ($_POST['f_general_uidNumber']) $_SESSION['account']->general_uidNumber = $_POST['f_general_uidNumber']; else $_SESSION['account']->general_uidNumber = ""; if ($_POST['f_general_group']) $_SESSION['account']->general_group = $_POST['f_general_group']; if ($_POST['f_general_groupadd']) $_SESSION['account']->general_groupadd = $_POST['f_general_groupadd']; else $_SESSION['account']->general_groupadd = ''; if ($_POST['f_general_homedir']) $_SESSION['account']->general_homedir = $_POST['f_general_homedir']; else $_SESSION['account']->general_homedir = ""; if ($_POST['f_general_shell']) $_SESSION['account']->general_shell = $_POST['f_general_shell']; if ($_POST['f_general_gecos']) $_SESSION['account']->general_gecos = $_POST['f_general_gecos']; else $_SESSION['account']->general_gecos = ""; // Check if values are OK and set automatic values. if not error-variable will be set if ($_SESSION['account_old']) $values = checkglobal($_SESSION['account'], $_SESSION['type2'], $_SESSION['account_old']); // account.inc else $values = checkglobal($_SESSION['account'], $_SESSION['type2']); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } else $error = $values; // Check which part Site should be displayed next if ($_POST['next'] && ($error=="0")) switch ($_SESSION['type2']) { case 'user': $select_local = 'unix'; break; case 'group': $select_local = 'quota'; break; case 'host': $select_local = 'unix'; break; } } break; case 'unix': // Write all general values into $_SESSION['account'] if ($_POST['f_unix_password']) $_SESSION['account']->unix_password = $_POST['f_unix_password']; else $_SESSION['account']->unix_password = ''; if ($_POST['f_unix_password_no']) $_SESSION['account']->unix_password_no = true; else $_SESSION['account']->unix_password_no = false; if ($_POST['f_unix_pwdwarn']) $_SESSION['account']->unix_pwdwarn = $_POST['f_unix_pwdwarn']; else $_SESSION['account']->unix_pwdwarn = ''; if ($_POST['f_unix_pwdallowlogin']) $_SESSION['account']->unix_pwdallowlogin = $_POST['f_unix_pwdallowlogin']; else $_SESSION['account']->unix_pwdallowlogin = ''; if ($_POST['f_unix_pwdmaxage']) $_SESSION['account']->unix_pwdmaxage = $_POST['f_unix_pwdmaxage']; else $_SESSION['account']->unix_pwdmaxage = ''; if ($_POST['f_unix_pwdminage']) $_SESSION['account']->unix_pwdminage = $_POST['f_unix_pwdminage']; else $_SESSION['account']->unix_pwdminage = ''; if ($_POST['f_unix_pwdexpire_day']) $_SESSION['account']->unix_pwdexpire_day = $_POST['f_unix_pwdexpire_day']; if ($_POST['f_unix_pwdexpire_mon']) $_SESSION['account']->unix_pwdexpire_mon = $_POST['f_unix_pwdexpire_mon']; if ($_POST['f_unix_pwdexpire_yea']) $_SESSION['account']->unix_pwdexpire_yea = $_POST['f_unix_pwdexpire_yea']; if ($_POST['f_unix_deactivated']) $_SESSION['account']->unix_deactivated = $_POST['f_unix_deactivated']; else $_SESSION['account']->unix_deactivated = false; if ($_POST['genpass']) { // Generate a random password if generate-button was pressed $_SESSION['account']->unix_password = genpasswd(); // Keep unix-page acitve $select_local = 'unix'; } // Check if values are OK and set automatic values. if not error-variable will be set else $error = checkunix($_SESSION['account'], $_SESSION['type2']); // account.inc // Check which part Site should be displayd // Reset password if reset button was pressed. Button only vissible if account should be modified if ($_POST['respass']) { $_SESSION['account']->unix_password_no=true; $_SESSION['account']->smb_password_no=true; } // Check which part Site should be displayed next if ($_POST['back']) $select_local = 'general'; else if (($_POST['next']) && ($error=="0")) $select_local = 'samba'; else $select_local = 'unix'; break; case 'samba': // Write all general values into $_SESSION['account'] if ($_POST['f_smb_password']) $_SESSION['account']->smb_password = $_POST['f_smb_password']; else $_SESSION['account']->smb_password = ""; if ($_POST['f_smb_password_no']) $_SESSION['account']->smb_password_no = true; else $_SESSION['account']->smb_password_no = false; if ($_POST['f_smb_useunixpwd']) $_SESSION['account']->smb_useunixpwd = $_POST['f_smb_useunixpwd']; else $_SESSION['account']->smb_useunixpwd = false; if ($_POST['f_smb_pwdcanchange']) $_SESSION['account']->smb_pwdcanchange = $_POST['f_smb_pwdcanchange']; else $_SESSION['account']->smb_pwdcanchange = false; if ($_POST['f_smb_pwdmustchange']) $_SESSION['account']->smb_pwdmustchange = $_POST['f_smb_pwdmustchange']; else $_SESSION['account']->smb_pwdmustchange = false; if ($_POST['f_smb_homedrive']) $_SESSION['account']->smb_homedrive = $_POST['f_smb_homedrive']; if ($_POST['f_smb_scriptpath']) $_SESSION['account']->smb_scriptPath = $_POST['f_smb_scriptpath']; else $_SESSION['account']->smb_scriptPath = ''; if ($_POST['f_smb_smbuserworkstations']) $_SESSION['account']->smb_smbuserworkstations = $_POST['f_smb_smbuserworkstations']; else $_SESSION['account']->smb_smbuserworkstations = ""; if ($_POST['f_smb_smbhome']) $_SESSION['account']->smb_smbhome = stripslashes($_POST['f_smb_smbhome']); else $_SESSION['account']->smb_smbhome = ""; if ($_POST['f_smb_profilePath']) $_SESSION['account']->smb_profilePath = stripslashes($_POST['f_smb_profilePath']); else $_SESSION['account']->smb_profilePath = ""; if ($_POST['f_smb_domain']) $_SESSION['account']->smb_domain = $_POST['f_smb_domain']; else $_SESSION['account']->smb_domain = false; if ($_POST['f_smb_flagsW']) $_SESSION['account']->smb_flagsW = $_POST['f_smb_flagsW']; else $_SESSION['account']->smb_flagsW = false; if ($_POST['f_smb_flagsD']) $_SESSION['account']->smb_flagsD = $_POST['f_smb_flagsD']; else $_SESSION['account']->smb_flagsD = false; if ($_POST['f_smb_flagsX']) $_SESSION['account']->smb_flagsX = $_POST['f_smb_flagsX']; else $_SESSION['account']->smb_flagsX = false; // Check if values are OK and set automatic values. if not error-variable will be set $values = checksamba($_SESSION['account'], $_SESSION['type2']); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } else $error = $values; // Check which part Site should be displayed next if ($_POST['back']) $select_local = 'unix'; else if ($_POST['next']) if ($error=="0") switch ($_SESSION['type2']) { case 'user': $select_local = 'quota'; break; case 'host': $select_local = 'final'; break; } else $select_local = 'samba'; break; case 'quota': // Write all general values into $_SESSION['account'] $i=0; while ($_SESSION['account']->quota[$i][0]) { $_SESSION['account']->quota[$i][2] = $_POST['f_quota_'.$i.'_2']; $_SESSION['account']->quota[$i][3] = $_POST['f_quota_'.$i.'_3']; $_SESSION['account']->quota[$i][6] = $_POST['f_quota_'.$i.'_6']; $_SESSION['account']->quota[$i][7] = $_POST['f_quota_'.$i.'_7']; $i++; } // Check if values are OK and set automatic values. if not error-variable will be set $values = checkquota($_SESSION['account'], $_SESSION['type2']); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } else $error = $values; // Check which part Site should be displayed next if ($_POST['back']) switch ($_SESSION['type2']) { case 'user': $select_local = 'samba'; break; case 'group': $select_local = 'general'; break; } else if ($_POST['next']) if ($error=="0") switch ($_SESSION['type2']) { case 'user': $select_local = 'personal'; break; case 'group': $select_local = 'final'; break; } else $select_local = 'quota'; break; case 'personal': // Write all general values into $_SESSION['account'] if ($_POST['f_personal_title']) $_SESSION['account']->personal_title = $_POST['f_personal_title']; else $_SESSION['account']->personal_title = ""; if ($_POST['f_personal_mail']) $_SESSION['account']->personal_mail = $_POST['f_personal_mail']; else $_SESSION['account']->personal_mail = ""; if ($_POST['f_personal_telephoneNumber']) $_SESSION['account']->personal_telephoneNumber = $_POST['f_personal_telephoneNumber']; else $_SESSION['account']->personal_telephoneNumber = ""; if ($_POST['f_personal_mobileTelephoneNumber']) $_SESSION['account']->personal_mobileTelephoneNumber = $_POST['f_personal_mobileTelephoneNumber']; else $_SESSION['account']->personal_mobileTelephoneNumber = ""; if ($_POST['f_personal_facsimileTelephoneNumber']) $_SESSION['account']->personal_facsimileTelephoneNumber = $_POST['f_personal_facsimileTelephoneNumber']; else $_SESSION['account']->personal_facsimileTelephoneNumber = ""; if ($_POST['f_personal_street']) $_SESSION['account']->personal_street = $_POST['f_personal_street']; else $_SESSION['account']->personal_street = ""; if ($_POST['f_personal_postalCode']) $_SESSION['account']->personal_postalCode = $_POST['f_personal_postalCode']; else $_SESSION['account']->personal_postalCode = ""; if ($_POST['f_personal_postalAddress']) $_SESSION['account']->personal_postalAddress = $_POST['f_personal_postalAddress']; else $_SESSION['account']->personal_postalAddress = ""; if ($_POST['f_personal_employeeType']) $_SESSION['account']->personal_employeeType = $_POST['f_personal_employeeType']; else $_SESSION['account']->personal_employeeType = ""; // Check if values are OK and set automatic values. if not error-variable will be set $values = checkpersonal($_SESSION['account'], $_SESSION['type2']); // account.inc if (is_object($values)) { while (list($key, $val) = each($values)) // Set only defined values if ($val) $_SESSION['account']->$key = $val; } else $error = $values; // Check which part Site should be displayed next if ($_POST['back']) $select_local = 'quota'; else if ($_POST['next']) if ($error=="0") $select_local = 'final'; else $select_local = 'personal'; break; case 'final': // Write all general values into $_SESSION['account'] if ($_POST['f_final_changegids']) $_SESSION['final_changegids'] = $_POST['f_final_changegids'] ; // Check which part Site should be displayed next if ($_POST['back']) switch ($_SESSION['type2']) { case 'user': $select_local = 'personal'; break; case 'group': $select_local = 'quota'; break; case 'host': $select_local = 'samba'; break; } break; case 'finish': // Check if pdf-file should be created if ($_POST['outputpdf']) createpdf($_SESSION['account']); break; } if ( $_POST['create'] ) { // Create-Button was pressed // Create or modify an account switch ($_SESSION['type2']) { case 'user': if ($_SESSION['account_old']) $result = modifyuser($_SESSION['account'],$_SESSION['account_old']); else $result = createuser($_SESSION['account']); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; break; case 'group': if ($_SESSION['account_old']) $result = modifygroup($_SESSION['account'],$_SESSION['account_old']); else $result = creategroup($_SESSION['account']); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; break; case 'host': if ($_SESSION['account_old']) $result = modifyhost($_SESSION['account'],$_SESSION['account_old']); else $result = createhost($_SESSION['account']); // account.inc if ( $result==1 || $result==3 ) $select_local = 'finish'; break; } } // Set selected page to general if no page was defined. should only true if account.php wasn't called by itself if (!$select_local) $select_local='general'; // Reset variables if recreate-button was pressed if ($_POST['createagain']) { $select_local='general'; $_SESSION['account']=""; } // Set selected page to backmain (Back to main listmenu) if ($_POST['backmain']) { $select_local='backmain'; } // Set selected page to load (load profile) if ($_POST['load']) $select_local='load'; // Set selected page to save (save profile) if ($_POST['save']) $select_local='save'; // Write HTML-Header and part of Table echo "\n"; echo ""; echo _("Create new Account"); echo "\n \n \n \n "; switch ($select_local) { // backmain = back to lists // load = load profile // save = save profile case 'backmain': // unregister sessionvar and select which list should be shown if (session_is_registered("shelllist")) session_unregister("shelllist"); if (session_is_registered("account")) session_unregister("account"); if (session_is_registered("account_old")) session_unregister("account_old"); switch ( $_SESSION['type2'] ) { case 'user' : if (session_is_registered("type2")) session_unregister("type2"); echo "\n"; break; case 'group' : if (session_is_registered("type2")) session_unregister("type2"); echo "\n"; break; case 'host' : if (session_is_registered("type2")) session_unregister("type2"); echo "\n"; break; } break; case 'load': // load profile switch ( $_SESSION['type2'] ) { case 'user': $_SESSION['account'] = loadUserProfile($_POST['f_general_selectprofile']); break; case 'host': $_SESSION['account'] = loadHostProfile($_POST['f_general_selectprofile']); break; case 'group': $_SESSION['account'] = loadGroupProfile($_POST['f_general_selectprofile']); break; } // select general page after group has been loaded $select_local='general'; break; case 'save': // save profile switch ( $_SESSION['type2'] ) { case 'user': saveUserProfile($_SESSION['account'], $_POST['f_finish_safeProfile']); break; case 'host': saveHostProfile($_SESSION['account'], $_POST['f_finish_safeProfile']); break; case 'group': saveGroupProfile($_SESSION['account'], $_POST['f_finish_safeProfile']); break; } // select last page displayed before user is created $select_local='final'; break; } echo "\n"; echo "
\n"; if ($error != "0") StatusMessage("ERROR", _("Invalid Value!"), $error); echo "\n"; switch ($select_local) { // Select which part of page will be loaded // general = startpage, general account paramters // unix = page with all shadow-options and password // samba = page with all samba-related parameters e.g. smbpassword // quota = page with all quota-related parameters e.g. hard file quota // personal = page with all personal-related parametergs, e.g. phone number // final = last page shown before account is created/modified // if account is modified commands might be ran are shown // finish = page shown after account has been created/modified case 'general': // General Account Settings // load list of all groups $groups = findgroups(); // Show page info echo '\n"; switch ( $_SESSION['type2'] ) { case 'user': // load list of profiles $profilelist = getUserProfiles(); // Create HTML-page echo '\n'."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; case 'unix': // Unix Password Settings echo ''."\n".''; switch ( $_SESSION['type2'] ) { case 'user' : echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; case 'host' : echo ''; echo ''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n".''."\n"; break; } echo ''."\n".''."\n".''."\n"; break; case 'samba': // Samba Settings echo ''."\n"; switch ( $_SESSION['type2'] ) { case 'user': echo ''; break; case 'host': echo ''; echo ''; break; } echo ''; break; case 'quota': // Quota Settings echo ''; $i=0; while ($_SESSION['account']->quota[$i][0]) { echo ''; // used blocks echo ''; // blocks soft limit echo ''; // blocks hard limit echo ''; // block grace period echo ''; // used inodes echo ''; // inodes soft limit echo ''; // inodes hard limit echo ''; // inodes grace period $i++; } echo ''; break; case 'personal': // Personal Settings echo ''; break; case 'final': // Final Settings echo ''; switch ( $_SESSION['type2'] ) { case 'user' : if (($_SESSION['account_old']) && ($_SESSION['account']->general_uidNumber != $_SESSION['account_old']->general_uidNumber)) { echo ''; StatusMessage ('INFO', _('UID-number has changed. You have to run the following command as root in order to change existing file-permissions:'), 'find / -gid ' . $_SESSION['account_old' ]->general_uidNumber . ' -exec chown ' . $_SESSION['account']->general_uidNumber . ' {} \;'); echo ''; } if (($_SESSION['account_old']) && ($_SESSION['account']->general_homedir != $_SESSION['account_old']->general_homedir)) { echo ''; StatusMessage ('INFO', _('Home Directory has changed. You have to run the following command as root in order to change the existing homedirectory:'), 'mv ' . $_SESSION['account_old' ]->general_homedir . ' ' . $_SESSION['account']->general_homedir); echo ''; } break; case 'group' : if (($_SESSION['account_old']) && ($_SESSION['account']->general_uidNumber != $_SESSION['account_old']->general_uidNumber)) { echo ''; StatusMessage ('INFO', _('GID-number has changed. You have to run the following command as root in order to change existing file-permissions:'), 'find / -gid ' . $_SESSION['account_old' ]->general_uidNumber . ' -exec chgrp ' . $_SESSION['account']->general_uidNumber . ' {} \;'); echo ''; echo ''; } break; case 'host': if (($_SESSION['account_old']) && ($_SESSION['account']->general_uidNumber != $_SESSION['account_old']->general_uidNumber)) { echo ''; StatusMessage ('INFO', _('UID-number has changed. You have to run the following command as root in order to change existing file-permissions:'), 'find / -gid ' . $_SESSION['account_old' ]->general_uidNumber . ' -exec chown ' . $_SESSION['account']->general_uidNumber . ' {} \;'); echo ''; } break; } echo ''; break; case 'finish': // Final Settings echo ''; switch ( $_SESSION['type2'] ) { case 'user' : echo ''; break; case 'group' : echo ''; break; case 'host' : echo ''; break; } break; } // Print end of HTML-Page echo '
'; echo _('General Properties'); echo "
'; echo _('Username*'); echo "". ' '._('Help').'
'; echo _('UID Number'); echo ' '._('Help').'
'; echo _('Surname*'); echo '
'; echo _('Given name*'); echo '
'; echo _('Primary Group'); echo ' '._('Help').'
'; echo _('Additional Groupmembership'); echo ' '._('Help').'
'; echo _('Home Directory'); echo ' '._('Help').'
'; echo _('Gecos'); echo ' '._('Help').'
'; echo _('Login Shell'); echo ' '._('Help').'
'; break; case 'group': // load list of profiles $profilelist = getGroupProfiles(); // Create HTML-page echo '
'; echo _('Groupname'); echo ' '._('Help').'
'; echo _('GID Number'); echo ' '._('Help').'
'; echo _('Gecos'); echo ' '._('Help').'
'; break; case 'host': // load list of profiles $profilelist = getHostProfiles(); // Create HTML-page echo '
'; echo _('Hostname'); echo ' '._('Help').'
'; echo _('UID Number'); echo ' '._('Help').'
'; echo _('Primary Group'); echo ' '._('Help').'
'; echo _('Additional Groupmembership'); echo ' '._('Help').'
'; echo _('Gecos'); echo ' '._('Help').'
'; break; } echo '
'; echo _('Unix Properties'); echo '
'; echo _('Password'); echo '
'; echo _('Use no Password.'); echo 'unix_password_no) echo ' checked '; echo '>
'; echo _('Password Warn'); echo ' '._('Help').'
'; echo _('Password Expire'); echo ' '._('Help').'
'; echo _('Maximum Passwordage'); echo ' '._('Help').'
'; echo _('Minimum Passwordage'); echo ' '._('Help').'
'; echo _('Expire Date'); echo ' '._('Help').'
'; echo _('Account deactivated'); echo 'unix_deactivated) echo ' checked '; echo '>
'; echo _('Password'); echo ''; if ($_SESSION['account_old']) { echo ''; } echo '
'; echo _('Password Warn'); echo ' '._('Help').'
'; echo _('Password Expire'); echo ' '._('Help').'
'; echo _('Maximum Passwordage'); echo ' '._('Help').'
'; echo _('Minimum Passwordage'); echo ' '._('Help').'
'; echo _('Expire Date'); echo ' '._('Help').'
'; echo _('Account deactivated'); echo 'unix_deactivated) echo ' checked '; echo '>
'; echo _('Samba Properties'); echo '
'; echo _('Samba Password'); echo ' smb_useunixpwd) echo ' checked '; echo '>'; echo _('Use Unix-Password'); echo '
'; echo _('Use no Password.'); echo 'smb_password_no) echo ' checked '; echo '>
'; echo _('Password doesn\'t expire.'); echo 'smb_flagsX) echo ' checked '; echo '>
'; echo _('User can change Password'); echo 'smb_pwdcanchange) echo ' checked '; echo '>
'; echo _('User must change Password'); echo 'smb_pwdmustchange) echo ' checked '; echo '>
'; echo _('Accout is deactivated'); echo 'smb_flagsD) echo ' checked '; echo '>
'; $_SESSION['account']->smb_flagsW = 0; echo _('Home Drive'); echo ''; echo _('Driveletter assigned on Windows-Workstations as Homedirectory.'); echo '
'; echo _('Script Path'); echo ' '; echo _('Filename and -path relative to netlogon-share which should be executed on logon. $user and $group are replaced with user- and groupname. Can be left empty.'); echo '
'; echo _('Profile Path'); echo ' '; echo _('Path of the userprofile. Can be a local absolute path or a UNC-path (\\\\server\\share). $user and $group are replaced with user- and groupname. Can be left empty.'); echo '
'; echo _('User Workstations'); echo ' '; echo _('Komma-separated list of workstations the user is allowed to login. Empty means every workstation. Can be left empty.'); echo '
'; echo _('smb Home'); echo ' '; echo _('UNC-path (\\\\server\\share) of homedirectory. $user and $group are replaced with user- and groupname. Can be left empty.'); echo '
'; echo _('Domain'); echo ' '; echo _('Windows-Domain of user. Can be left empty.'); echo '
'; echo _('Password doesn\'t expire.'); echo 'smb_flagsX) echo ' checked '; echo '>
'; echo _('Host can change Password'); echo 'smb_pwdcanchange) echo ' checked '; echo '>
'; echo _('Host must change Password'); echo 'smb_pwdmustchange) echo ' checked '; echo '>
'; echo _('Accout is deactivated'); echo 'smb_flagsD) echo ' checked '; echo '>
'; $_SESSION['account']->smb_flagsW = 1; echo '
'; echo _('Domain'); echo ' '; echo _('Windows-Domain of user. Can be left empty.'); echo '
'; echo _('Quota Properties'); echo '
'; echo _('Mointpoint'); echo ''; echo _('used blocks'); echo ''; echo _('soft block limit'); echo ''; echo _('hard block limit'); echo ''; echo _('grace block period'); echo ''; echo _('used inodes'); echo ''; echo _('soft inode limit'); echo ''; echo _('hard inode limit'); echo ''; echo _('grace inode period'); echo '
'.$_SESSION['account']->quota[$i][0].''.$_SESSION['account']->quota[$i][1].''.$_SESSION['account']->quota[$i][4].''.$_SESSION['account']->quota[$i][5].''.$_SESSION['account']->quota[$i][8].'
'; echo _('Personal Properties'); echo '
'; echo _('Title'); echo ' '; echo $_SESSION['account']->general_surname . ' ' . $_SESSION['account']->general_givenname . ''; echo _('Every value on this page can be left empty.'); echo '
'; echo _('Employee Type'); echo '
'; echo _('Street'); echo '
'; echo _('Postal code'); echo '
'; echo _('Postal address'); echo '
'; echo _('Telephone Number'); echo '
'; echo _('Mobile Phonenumber'); echo '
'; echo _('Facsimile Number'); echo '
'; echo _('eMail Address'); echo '
'; if ($_SESSION['account_old']) echo _('Modify'); else echo _('Create'); echo '
'; echo ''; echo _('Change GID-Number of all users in group to new value'); echo '
'; echo ' '; echo ' '; echo '
'; echo _('Success'); echo '
'; echo _('User '); echo $_SESSION['account']->general_username; if ($_SESSION['account_old']) echo _(' has been modified. '); else echo _(' has been created. '); if (!$_SESSION['account_old']) { echo ''; } echo '
'; echo _('Group '); echo $_SESSION['account']->general_username; if ($_SESSION['account_old']) echo _(' has been modified. '); else echo _(' has been created. '); echo '
'; if (!$_SESSION['account_old']) { echo' '; } echo '
'; echo _('Host '); echo $_SESSION['account']->general_username; if ($_SESSION['account_old']) echo _(' has been modified. '); else echo _(' has been created. '); echo '
'; if (!$_SESSION['account_old']) { echo ''; } echo '
'; ?>