general_username = $f_general_username; else $_SESSION['account_temp']->general_username = $f_general_username; if ($f_general_surname) $_SESSION['account_temp']->general_surname = $f_general_surname; else $_SESSION['account_temp']->general_surname = ""; if ($f_general_givenname) $_SESSION['account_temp']->general_givenname = $f_general_givenname; else $_SESSION['account_temp']->general_givenname = ""; if ($f_general_uidNumber) $_SESSION['account_temp']->general_uidNumber = $f_general_uidNumber; else $_SESSION['account_temp']->general_uidNumber = ""; if ($f_general_group) $_SESSION['account_temp']->general_group = $f_general_group; if ($f_general_groupadd) $_SESSION['account_temp']->general_groupadd = $f_general_groupadd; if ($f_general_homedir) $_SESSION['account_temp']->general_homedir = $f_general_homedir; else $_SESSION['account_temp']->general_homedir = ""; if ($f_general_shell) $_SESSION['account_temp']->general_shell = $f_general_shell; if ($f_general_gecos) $_SESSION['account_temp']->general_gecos = $f_general_gecos; else $_SESSION['account_temp']->general_gecos = ""; // Check Values $error = checkglobal(); // account.inc // Check which part Site should be displayd if ($next && ($error=="0")) $select = 'unix'; break; case 'unix': // Write alle values in temporary object if ($genpass) { $f_unix_password = genpasswd(); } if ($f_unix_password) $_SESSION['account_temp']->unix_password = $f_unix_password; else $_SESSION['account_temp']->unix_password = ""; if ($f_unix_pwdwarn) $_SESSION['account_temp']->unix_pwdwarn = $f_unix_pwdwarn; else $_SESSION['account_temp']->unix_pwdwarn = "0"; if ($f_unix_pwdallowlogin) $_SESSION['account_temp']->unix_pwdallowlogin = $f_unix_pwdallowlogin; else $_SESSION['account_temp']->unix_pwdallowlogin = "0"; if ($f_unix_pwdmaxage) $_SESSION['account_temp']->unix_pwdmaxage = $f_unix_pwdmaxage; else $_SESSION['account_temp']->unix_pwdmaxage = "0"; if ($f_unix_pwdminage) $_SESSION['account_temp']->unix_pwdminage = $f_unix_pwdminage; else $_SESSION['account_temp']->unix_pwdminage = "0"; if ($f_unix_pwdexpire_day) $_SESSION['account_temp']->unix_pwdexpire_day = $f_unix_pwdexpire_day; if ($f_unix_pwdexpire_mon) $_SESSION['account_temp']->unix_pwdexpire_mon = $f_unix_pwdexpire_mon; if ($f_unix_pwdexpire_yea) $_SESSION['account_temp']->unix_pwdexpire_yea = $f_unix_pwdexpire_yea; if ($f_unix_deactivated) $_SESSION['account_temp']->unix_deactivated = $f_unix_deactivated; else $_SESSION['account_temp']->unix_deactivated = false; // Check Values $error = checkunix(); // account.inc // Check which part Site should be displayd if ($back && ($error=="0")) $select = 'general'; if ($next && ($error=="0")) $select = 'samba'; break; case 'samba': // Write alle values in temporary object if ($f_smb_password) $_SESSION['account_temp']->smb_password = $f_smb_password; else $_SESSION['account_temp']->smb_password = ""; if ($f_smb_useunixpwd) $_SESSION['account_temp']->smb_useunixpwd = $f_smb_useunixpwd; else $_SESSION['account_temp']->smb_useunixpwd = false; if ($f_smb_pwdcanchange) $_SESSION['account_temp']->smb_pwdcanchange = $f_smb_pwdcanchange; else $_SESSION['account_temp']->smb_pwdcanchange = false; if ($f_smb_pwdmustchange) $_SESSION['account_temp']->smb_pwdmustchange = $f_smb_pwdmustchange; else $_SESSION['account_temp']->smb_pwdmustchange = false; if ($f_smb_homedrive) $_SESSION['account_temp']->smb_homedrive = $f_smb_homedrive; if ($f_smb_scriptpath) $_SESSION['account_temp']->smb_scriptpath = $f_smb_scriptpath; else $_SESSION['account_temp']->smb_scriptpath = ""; if ($f_smb_smbuserworkstations) $_SESSION['account_temp']->smb_smbuserworkstations = $f_smb_smbuserworkstations; else $_SESSION['account_temp']->smb_smbuserworkstations = ""; if ($f_smb_smbhome) $_SESSION['account_temp']->smb_smbhome = stripslashes($f_smb_smbhome); else $_SESSION['account_temp']->smb_smbhome = ""; if ($f_smb_profilePath) $_SESSION['account_temp']->smb_profilePath = stripslashes($f_smb_profilePath); else $_SESSION['account_temp']->smb_profilePath = ""; if ($f_smb_domain) $_SESSION['account_temp']->smb_domain = $f_smb_domain; else $_SESSION['account_temp']->smb_domain = false; if ($f_smb_flagsW) $_SESSION['account_temp']->smb_flagsW = $f_smb_flagsW; else $_SESSION['account_temp']->smb_flagsW = false; if ($f_smb_flagsD) $_SESSION['account_temp']->smb_flagsD = $f_smb_flagsD; else $_SESSION['account_temp']->smb_flagsD = false; if ($f_smb_flagsX) $_SESSION['account_temp']->smb_flagsX = $f_smb_flagsX; else $_SESSION['account_temp']->smb_flagsX = false; // Check Values $error = checksamba(); // account.inc // Check which part Site should be displayd if ($back && ($error=="0")) $select = 'unix'; if ($next && ($error=="0")) $select = 'quota'; break; case 'quota': // Check which part Site should be displayd if ($back && ($error=="0")) $select = 'samba'; if ($next && ($error=="0")) $select = 'personal'; break; case 'personal': // Check which part Site should be displayd if ($back && ($error=="0")) $select = 'quota'; break; } if ($error != "0") { echo ''; } if ( $create ) { // Create-Button was pressed switch ($_SESSION['type2']) { case 'user': $result = createaccount(); // account.inc if ( $result==1 || $result==3 ) { $_SESSION['account'] = ""; $_SESSION['account_old'] = ""; $_SESSION['account_temp'] = ""; // Dialog anzeigen, dass Benutzer angelegt wurde und fragen, ob Daten ausgedruckt werden sollen } break; case 'group': $result = creategroup(); // account.inc if ( $result==1 || $result==3 ) { $_SESSION['account'] = ""; $_SESSION['account_old'] = ""; $_SESSION['account_temp'] = ""; // Dialog anzeigen, dass Gruppe angelegt wurde und fragen, ob Daten ausgedruckt werden sollen } break; case 'host': $result = createhost(); // account.inc if ( $result==1 || $result==3 ) { $_SESSION['account'] = ""; $_SESSION['account_old'] = ""; $_SESSION['account_temp'] = ""; // Dialog anzeigen, dass host angelegt wurde und fragen, ob Daten ausgedruckt werden sollen } break; } } // Write HTML-Header and part of Table echo '