2003-09-12 11:27:57 +00:00
< ? php
/*
$Id $
This code is part of LDAP Account Manager ( http :// www . sourceforge . net / projects / lam )
Copyright ( C ) 2003 Tilo Lutz
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
LDAP Account Manager displays table for creating or modifying accounts in LDAP
*/
2003-10-21 13:40:13 +00:00
// include all needed files
2003-09-12 11:27:57 +00:00
include_once ( '../../lib/account.inc' ); // File with all account-funtions
include_once ( '../../lib/config.inc' ); // File with configure-functions
include_once ( '../../lib/profiles.inc' ); // functions to load and save profiles
include_once ( '../../lib/status.inc' ); // Return error-message
include_once ( '../../lib/pdf.inc' ); // Return a pdf-file
include_once ( '../../lib/ldap.inc' ); // LDAP-functions
2003-10-21 13:40:13 +00:00
// Start session
2003-09-12 11:27:57 +00:00
session_save_path ( '../../sess' );
@ session_start ();
2003-10-21 13:40:13 +00:00
// Set correct language, codepages, ....
2003-09-12 11:27:57 +00:00
setlanguage ();
2003-10-04 18:44:18 +00:00
2003-10-21 13:40:13 +00:00
/* hostedit . php is using dynamic session varialenames so
* we can run several copies of hostedit . php at the same
* time
* $varkey is the dynamic part of the variable name
*/
2003-10-04 18:44:18 +00:00
if ( ! isset ( $_POST [ 'varkey' ])) $varkey = session_id () . time ();
else $varkey = $_POST [ 'varkey' ];
if ( ! isset ( $_SESSION [ 'account_' . $varkey . '_account_new' ])) $_SESSION [ 'account_' . $varkey . '_account_new' ] = new account ();
// Register Session-Variables with references so we don't net to change to complete code if names changes
$account_new =& $_SESSION [ 'account_' . $varkey . '_account_new' ];
2003-10-07 17:52:51 +00:00
if ( is_object ( $_SESSION [ 'account_' . $varkey . '_account_old' ])) $account_old =& $_SESSION [ 'account_' . $varkey . '_account_old' ];
2003-10-04 18:44:18 +00:00
$ldap_intern =& $_SESSION [ 'ldap' ];
$config_intern =& $_SESSION [ 'config' ];
$header_intern =& $_SESSION [ 'header' ];
2003-10-21 13:40:13 +00:00
// $_GET is only valid if hostedit.php was called from hostlist.php
2003-10-07 17:52:51 +00:00
if ( isset ( $_GET [ 'DN' ]) && $_GET [ 'DN' ] != '' ) {
2003-10-21 13:40:13 +00:00
// hostedit.php should edit an existing account
// reset variables
2003-10-07 17:52:51 +00:00
if ( isset ( $_SESSION [ 'account_' . $varkey . '_account_old' ])) {
unset ( $account_old );
unset ( $_SESSION [ 'account_' . $varkey . '_account_old' ]);
2003-09-12 11:27:57 +00:00
}
2003-10-07 17:52:51 +00:00
$_SESSION [ 'account_' . $varkey . '_account_old' ] = new account ();
$account_old =& $_SESSION [ 'account_' . $varkey . '_account_old' ];
2003-10-21 13:40:13 +00:00
// get "real" DN from variable
2003-10-07 17:52:51 +00:00
$DN = str_replace ( " \ ' " , '' , $_GET [ 'DN' ]);
2003-10-21 13:40:13 +00:00
// Load existing host
2003-10-07 17:52:51 +00:00
$account_new = loadhost ( $DN );
2003-10-21 13:40:13 +00:00
// Get a copy of original host
2003-10-07 17:52:51 +00:00
$account_old = $account_new ;
// Store only DN without uid=$name
$account_new -> general_dn = substr ( $account_new -> general_dn , strpos ( $account_new -> general_dn , ',' ) + 1 );
2003-09-12 11:27:57 +00:00
}
2003-10-21 13:40:13 +00:00
// Startcondition. hostedit.php was called from outside to create a new host
else if ( count ( $_POST ) == 0 ) {
// Create new account object with settings from default profile
2003-10-04 18:44:18 +00:00
$account_new = loadHostProfile ( 'default' );
$account_new -> type = 'host' ;
$account_new -> smb_flagsW = 1 ;
$account_new -> smb_flagsX = 1 ;
$account_new -> general_homedir = '/dev/null' ;
$account_new -> general_shell = '/bin/false' ;
2003-09-12 12:41:56 +00:00
}
2003-09-12 11:27:57 +00:00
2003-10-21 13:40:13 +00:00
switch ( $_POST [ 'select' ]) {
/* Select which page should be displayed . For hosts we have
* only have general and finish
* general = page with all settings for hosts
* final = page which will be displayed if changes were made
*/
2003-09-12 11:27:57 +00:00
case 'general' :
2003-10-04 18:44:18 +00:00
// Write all general values into $account_new if no profile should be loaded
2003-09-12 11:27:57 +00:00
if ( ! $_POST [ 'load' ]) {
2003-10-04 18:44:18 +00:00
$account_new -> general_dn = $_POST [ 'f_general_suffix' ];
$account_new -> general_username = $_POST [ 'f_general_username' ];
$account_new -> general_uidNumber = $_POST [ 'f_general_uidNumber' ];
$account_new -> general_group = $_POST [ 'f_general_group' ];
$account_new -> general_gecos = $_POST [ 'f_general_gecos' ];
2003-10-21 13:40:13 +00:00
$account_new -> smb_displayName = $_POST [ 'f_smb_displayName' ];
2003-09-12 11:27:57 +00:00
// Check if values are OK and set automatic values. if not error-variable will be set
2003-10-21 13:40:13 +00:00
// Add $ to end of hostname if hostname doesn't end with "$"
2003-10-04 18:44:18 +00:00
if ( substr ( $account_new -> general_username , strlen ( $account_new -> general_username ) - 1 , strlen ( $account_new -> general_username )) != '$' ) {
$account_new -> general_username = $account_new -> general_username . '$' ;
2003-09-17 16:57:01 +00:00
$errors [] = array ( 'WARN' , _ ( 'Host name' ), _ ( 'Added $ to hostname.' ));
}
2003-10-21 13:40:13 +00:00
// Get copy of hostname so we can check if changes were made
2003-10-04 18:44:18 +00:00
$tempname = $account_new -> general_username ;
2003-09-17 16:57:01 +00:00
// Check if Hostname contains only valid characters
2003-10-04 18:44:18 +00:00
if ( ! ereg ( '^([a-z]|[A-Z]|[0-9]|[.]|[-]|[$])*$' , $account_new -> general_username ))
2003-10-21 13:40:13 +00:00
$errors [] = array ( 'ERROR' , _ ( 'Host name' ), _ ( 'Hostname contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and .-_ !' ));
2003-09-17 16:57:01 +00:00
2003-10-21 13:40:13 +00:00
// Create automatic Hostname with number if original host already exists
2003-09-17 16:57:01 +00:00
// Reset name to original name if new name is in use
2003-10-19 17:06:16 +00:00
if ( ldapexists ( $account_new , $account_old ) && is_object ( $account_old ))
2003-10-04 18:44:18 +00:00
$account_new -> general_username = $account_old -> general_username ;
2003-10-19 17:06:16 +00:00
while ( $temp = ldapexists ( $account_new , $account_old )) {
2003-10-21 13:40:13 +00:00
// Remove "$" at end of hostname
2003-10-04 18:44:18 +00:00
$account_new -> general_username = substr ( $account_new -> general_username , 0 , $account_new -> general_username - 1 );
2003-10-21 13:40:13 +00:00
// get last character of username
$lastchar = substr ( $account_new -> general_username , strlen ( $account_new -> general_username ) - 1 , 1 );
if ( ! ereg ( '^([0-9])+$' , $lastchar )) {
/* Last character is no number . Therefore we only have to
* add " 2 " to it .
*/
$account_new -> general_username = $account_new -> general_username . '2$' ;
}
else {
/* Last character is a number -> we have to increase the number until we ' ve
* found a hostname with trailing number which is not in use .
*
* $i will show us were we have to split hostname so we get a part
* with the hostname and a part with the trailing number
*/
$i = strlen ( $account_new -> general_username ) - 3 ;
2003-09-17 16:57:01 +00:00
$mark = false ;
2003-10-21 13:40:13 +00:00
// Set $i to the last character which is a number in $account_new->general_username
while ( ! $mark ) {
2003-10-04 18:44:18 +00:00
if ( ereg ( '^([0-9])+$' , substr ( $account_new -> general_username , $i , strlen ( $account_new -> general_username ) - 1 ))) $i -- ;
2003-09-17 16:57:01 +00:00
else $mark = true ;
}
// increase last number with one
2003-10-21 13:40:13 +00:00
$firstchars = substr ( $account_new -> general_username , 0 , $i + 2 );
$lastchars = substr ( $account_new -> general_username , $i + 2 , strlen ( $account_new -> general_username ) - $i );
// Put hostname together
2003-10-04 18:44:18 +00:00
$account_new -> general_username = $firstchars . ( intval ( $lastchars ) + 1 ) . '$' ;
2003-09-17 16:57:01 +00:00
}
}
2003-10-21 13:40:13 +00:00
// Show warning if lam has changed hostname
2003-10-04 18:44:18 +00:00
if ( $account_new -> general_username != $tempname )
2003-09-17 16:57:01 +00:00
$errors [] = array ( 'WARN' , _ ( 'Host name' ), _ ( 'Hostname already in use. Selected next free hostname.' ));
// Check if Name-length is OK. minLength=3, maxLength=20
2003-10-04 18:44:18 +00:00
if ( ! ereg ( '.{3,20}' , $account_new -> general_username )) $errors [] = array ( 'ERROR' , _ ( 'Name' ), _ ( 'Name must contain between 3 and 20 characters.' ));
2003-09-17 16:57:01 +00:00
// Check if Name starts with letter
2003-10-04 18:44:18 +00:00
if ( ! ereg ( '^([a-z]|[A-Z]).*$' , $account_new -> general_username ))
2003-10-21 13:40:13 +00:00
$errors [] = array ( 'ERROR' , _ ( 'Name' ), _ ( 'Name contains invalid characters. First character must be a letter.' ));
// Set gecos-field to hostname if it's empty
if ( $account_new -> general_gecos == '' ) {
$account_new -> general_gecos = $account_new -> general_username ;
$errors [] = array ( 'INFO' , _ ( 'Gecos' ), _ ( 'Inserted hostname in gecos-field.' ));
}
// Check if values are OK and set automatic values. if not error-variable will be set
if (( $account_new -> smb_displayName == '' ) && isset ( $account_new -> general_gecos )) {
$account_new -> smb_displayName = $account_new -> general_gecos ;
$errors [] = array ( 'INFO' , _ ( 'Display name' ), _ ( 'Inserted gecos-field as display name.' ));
}
// Check if UID is valid. If none value was entered, the next useable value will be inserted
$temp = explode ( ':' , checkid ( $account_new , $account_old ));
$account_new -> general_uidNumber = $temp [ 0 ];
// true if checkid has returned an error
if ( $temp [ 1 ] != '' ) $errors [] = explode ( ';' , $temp [ 1 ]);
// Set Samba-Domain
if ( $config_intern -> is_samba3 ()) {
// Samba 3 used a samba3domain object
// Get all domains
$samba3domains = $ldap_intern -> search_domains ( $config_intern -> get_domainSuffix ());
// Search the corrct domain in array
unset ( $account_new -> smb_domain );
$i = 0 ;
while ( ! is_object ( $account_new -> smb_domain ) && isset ( $samba3domains [ $i ])) {
if ( $_POST [ 'f_smb_domain' ] == $samba3domains [ $i ] -> name )
$account_new -> smb_domain = $samba3domains [ $i ];
else $i ++ ;
2003-09-12 11:27:57 +00:00
}
2003-10-21 13:40:13 +00:00
}
// Samba 2.2 uses only a string as domainname
else {
$account_new -> smb_domain = $_POST [ 'f_smb_domain' ];
// Check if Domain-name is OK
if (( ! $account_new -> smb_domain == '' ) && ! ereg ( '^([a-z]|[A-Z]|[0-9]|[-])+$' , $account_new -> smb_domain ))
$errors [] = array ( 'ERROR' , _ ( 'Domain name' ), _ ( 'Domain name contains invalid characters. Valid characters are: a-z, A-Z, 0-9 and -.' ));
}
// Reset password if reset button was pressed. Button only vissible if account should be modified
if ( $_POST [ 'respass' ]) {
$account_new -> unix_password_no = true ;
$account_new -> smb_password_no = true ;
}
2003-09-12 11:27:57 +00:00
}
2003-10-21 13:40:13 +00:00
// Check Objectclasses. Display Warning if objectclasses don'T fot
if ( isset ( $account_old -> general_objectClass )) {
if ( ! in_array ( 'posixAccount' , $account_old -> general_objectClass )) $errors [] = array ( 'WARN' , _ ( 'ObjectClass posixAccount not found.' ), _ ( 'Have to add objectClass posixAccount.' ));
if ( ! in_array ( 'shadowAccount' , $account_old -> general_objectClass )) $errors [] = array ( 'WARN' , _ ( 'ObjectClass shadowAccount not found.' ), _ ( 'Have to add objectClass shadowAccount.' ));
if ( $config_intern -> is_samba3 ()) {
if ( ! in_array ( 'sambaSamAccount' , $account_old -> general_objectClass )) $errors [] = array ( 'WARN' , _ ( 'ObjectClass sambaSamAccount not found.' ), _ ( 'Have to add objectClass sambaSamAccount. Host with sambaAccount will be updated.' ));
}
else if ( ! in_array ( 'sambaAccount' , $account_old -> general_objectClass )) $errors [] = array ( 'WARN' , _ ( 'ObjectClass sambaAccount not found.' ), _ ( 'Have to add objectClass sambaSamAccount. Host with sambaSamAccount will be set back to sambaAccount.' ));
2003-09-12 11:27:57 +00:00
}
2003-09-17 16:57:01 +00:00
2003-09-12 11:27:57 +00:00
break ;
2003-10-17 16:04:57 +00:00
case 'finish' :
// Check if pdf-file should be created
if ( $_POST [ 'outputpdf' ]) {
createHostPDF ( array ( $account_new ));
die ;
}
break ;
2003-09-12 11:27:57 +00:00
}
do { // X-Or, only one if() can be true
2003-10-21 13:40:13 +00:00
// Reset account to original settings if undo-button was pressed
2003-09-20 10:15:24 +00:00
if ( $_POST [ 'next_reset' ]) {
2003-10-04 18:44:18 +00:00
$account_new = $account_old ;
$account_new -> general_dn = substr ( $account_new -> general_dn , strpos ( $account_new -> general_dn , ',' ) + 1 );
2003-09-20 10:15:24 +00:00
break ;
}
2003-10-21 13:40:13 +00:00
// Create-Button was pressed
if ( $_POST [ 'create' ] && ! isset ( $errors )) {
2003-09-12 11:27:57 +00:00
// Create or modify an account
2003-10-04 18:44:18 +00:00
if ( $account_old ) $result = modifyhost ( $account_new , $account_old );
else $result = createhost ( $account_new ); // account.inc
2003-10-21 13:40:13 +00:00
if ( $result == 5 || $result == 4 ) $select_local = 'general' ;
else $select_local = 'finish' ;
2003-09-12 11:27:57 +00:00
}
2003-10-21 13:40:13 +00:00
// Back to main-page
2003-09-12 11:27:57 +00:00
if ( $_POST [ 'createagain' ]) {
$select_local = 'general' ;
2003-10-21 13:40:13 +00:00
unset ( $_SESSION [ 'account_' . $varkey . '_account_new' ]);
2003-10-04 18:44:18 +00:00
unset ( $account_new );
2003-10-21 13:40:13 +00:00
$_SESSION [ 'account_' . $varkey . '_account_new' ] = loadHostProfile ( 'default' );
$account_new =& $_SESSION [ 'account_' . $varkey . '_account_new' ];
2003-10-04 18:44:18 +00:00
$account_new -> type = 'host' ;
2003-09-12 11:27:57 +00:00
break ;
}
2003-10-21 13:40:13 +00:00
// Load Profile and reset all attributes to settings in profile
2003-09-12 11:27:57 +00:00
if ( $_POST [ 'load' ]) {
2003-10-04 18:44:18 +00:00
$account_new -> general_dn = $_POST [ 'f_general_suffix' ];
$account_new -> general_username = $_POST [ 'f_general_username' ];
$account_new -> general_uidNumber = $_POST [ 'f_general_uidNumber' ];
$account_new -> general_group = $_POST [ 'f_general_group' ];
$account_new -> general_gecos = $_POST [ 'f_general_gecos' ];
2003-09-12 11:27:57 +00:00
// load profile
if ( $_POST [ 'f_general_selectprofile' ] != '' ) $values = loadHostProfile ( $_POST [ 'f_general_selectprofile' ]);
if ( is_object ( $values )) {
while ( list ( $key , $val ) = each ( $values )) // Set only defined values
2003-10-04 18:44:18 +00:00
if ( isset ( $val )) $account_new -> $key = $val ;
2003-09-12 11:27:57 +00:00
}
2003-10-21 13:40:13 +00:00
$errors [] = array ( 'INFO' , _ ( 'Load profile' ), _ ( 'Profile loaded.' ));
2003-09-12 11:27:57 +00:00
break ;
}
2003-10-21 13:40:13 +00:00
// Save Profile
2003-09-12 11:27:57 +00:00
if ( $_POST [ 'save' ]) {
// save profile
2003-10-21 13:40:13 +00:00
if ( $_POST [ 'f_finish_safeProfile' ] == '' )
$errors [] = array ( 'ERROR' , _ ( 'Save profile' ), _ ( 'No profilename given.' ));
else {
saveHostProfile ( $account_new , $_POST [ 'f_finish_safeProfile' ]);
$errors [] = array ( 'INFO' , _ ( 'Save profile' ), _ ( 'New profile created.' ));
}
2003-09-12 11:27:57 +00:00
break ;
}
2003-10-21 13:40:13 +00:00
// Go back to listhosts.php
2003-09-12 11:27:57 +00:00
if ( $_POST [ 'backmain' ]) {
2003-10-17 07:58:43 +00:00
metaRefresh ( " ../lists/listhosts.php " );
if ( isset ( $_SESSION [ 'account_' . $varkey . '_account_new' ])) unset ( $_SESSION [ 'account_' . $varkey . '_account_new' ]);
if ( isset ( $_SESSION [ 'account_' . $varkey . '_account_old' ])) unset ( $_SESSION [ 'account_' . $varkey . '_account_old' ]);
2003-10-01 12:14:04 +00:00
die ;
2003-09-12 11:27:57 +00:00
break ;
}
} while ( 0 );
2003-10-21 13:40:13 +00:00
// Display main page if nothing else was selected
if ( ! isset ( $select_local )) $select_local = 'general' ;
2003-09-12 11:27:57 +00:00
2003-10-01 12:14:04 +00:00
// Write HTML-Header
2003-10-04 18:44:18 +00:00
echo $header_intern ;
2003-10-01 12:14:04 +00:00
echo " <html><head><title> " ;
echo _ ( " Create new Account " );
echo " </title> \n " .
2003-10-17 07:58:43 +00:00
" <link rel= \" stylesheet \" type= \" text/css \" href= \" ../../style/layout.css \" > \n " .
2003-10-01 12:14:04 +00:00
" <meta http-equiv= \" pragma \" content= \" no-cache \" > \n " .
" <meta http-equiv= \" cache-control \" content= \" no-cache \" > \n " .
" </head><body> \n " .
2003-10-04 18:44:18 +00:00
" <form action= \" hostedit.php \" method= \" post \" > \n " .
" <input name= \" varkey \" type= \" hidden \" value= \" " . $varkey . " \" > \n " ;
2003-09-12 11:27:57 +00:00
2003-10-21 13:40:13 +00:00
// Display errir-messages
2003-10-20 17:56:52 +00:00
if ( is_array ( $errors ))
2003-09-12 11:27:57 +00:00
for ( $i = 0 ; $i < sizeof ( $errors ); $i ++ ) StatusMessage ( $errors [ $i ][ 0 ], $errors [ $i ][ 1 ], $errors [ $i ][ 2 ]);
2003-10-04 18:44:18 +00:00
// print_r($account_new);
2003-09-12 11:27:57 +00:00
2003-10-21 13:40:13 +00:00
/* Select which part of page will be loaded
* Because hosts have very less settings all are
* on a single page . Only success - message is on a
* different page
*/
switch ( $select_local ) {
// general = startpage, all account paramters
2003-09-12 11:27:57 +00:00
// finish = page shown after account has been created/modified
case 'general' :
// General Account Settings
// load list of all groups
$groups = findgroups ();
// load list of profiles
$profilelist = getHostProfiles ();
2003-10-21 13:40:13 +00:00
// Get List of all domains
if ( $config_intern -> is_samba3 ()) $samba3domains = $ldap_intern -> search_domains ( $config_intern -> get_domainSuffix ());
// Why this ?? fixme
if ( $account_new -> smb_password_no ) echo '<input name="f_smb_password_no" type="hidden" value="1">' ;
2003-09-12 11:27:57 +00:00
// Show page info
echo '<input name="select" type="hidden" value="general">' ;
2003-10-21 13:40:13 +00:00
// Show fieldset with list of all host profiles
if ( count ( $profilelist ) != 0 ) {
echo " <fieldset class= \" hostedit-dark \" ><legend class= \" hostedit-bright \" ><b> " ;
echo _ ( " Load profile " );
echo " </b></legend> \n <table border=0 width= \" 100% \" > \n <tr> \n <td width= \" 50% \" > " ;
echo " <select name= \" f_general_selectprofile \" > " ;
foreach ( $profilelist as $profile ) echo " <option> $profile </option> \n " ;
echo " </select></td><td width= \" 30% \" > \n " .
" <input name= \" load \" type= \" submit \" value= \" " ; echo _ ( 'Load Profile' );
echo " \" ></td><td width= \" 20 \" ><a href= \" ../help.php?HelpNumber=421 \" target= \" lamhelp \" > " ;
echo _ ( 'Help' ) . " </a></td> \n </tr> \n </table> \n </fieldset> \n " ;
2003-09-20 10:15:24 +00:00
}
2003-10-21 13:40:13 +00:00
// Show Fieldset with all host settings
2003-09-12 16:50:55 +00:00
echo " <fieldset class= \" hostedit-bright \" ><legend class= \" hostedit-bright \" ><b> " ;
2003-09-12 11:27:57 +00:00
echo _ ( " General properties " );
2003-10-21 13:40:13 +00:00
echo " </b></legend> \n <table border=0 width= \" 100% \" > \n <tr> \n <td width= \" 50% \" > " ;
2003-09-12 11:27:57 +00:00
echo _ ( 'Host name' ) . '*' ;
2003-10-21 13:40:13 +00:00
echo " </td> \n <td width= \" 30% \" > " .
2003-10-04 18:44:18 +00:00
'<input name="f_general_username" type="text" size="20" maxlength="20" value="' . $account_new -> general_username . '">' .
2003-10-21 13:40:13 +00:00
" </td><td width= \" 20% \" > " .
2003-10-17 07:58:43 +00:00
'<a href="../help.php?HelpNumber=410" target="lamhelp">' . _ ( 'Help' ) . '</a>' .
2003-10-21 13:40:13 +00:00
" </td></tr> \n <tr><td> " ;
2003-09-12 11:27:57 +00:00
echo _ ( 'UID number' );
2003-10-21 13:40:13 +00:00
echo " </td> \n <td> " .
2003-10-04 18:44:18 +00:00
'<input name="f_general_uidNumber" type="text" size="6" maxlength="6" value="' . $account_new -> general_uidNumber . '">' .
2003-10-21 13:40:13 +00:00
" </td> \n <td> " .
2003-10-17 07:58:43 +00:00
'<a href="../help.php?HelpNumber=411" target="lamhelp">' . _ ( 'Help' ) . '</a>' .
2003-10-21 13:40:13 +00:00
" </td></tr> \n <tr><td> " ;
2003-09-12 11:27:57 +00:00
echo _ ( 'Primary group' ) . '*' ;
2003-10-21 13:40:13 +00:00
echo " </td> \n <td><select name= \" f_general_group \" > " ;
2003-09-12 11:27:57 +00:00
foreach ( $groups as $group ) {
2003-10-04 18:44:18 +00:00
if ( $account_new -> general_group == $group ) echo '<option selected>' . $group . '</option>' ;
2003-09-12 11:27:57 +00:00
else echo '<option>' . $group . '</option>' ;
}
echo '</select></td><td>' .
2003-10-17 07:58:43 +00:00
'<a href="../help.php?HelpNumber=412" target="lamhelp">' . _ ( 'Help' ) . '</a>' .
2003-10-21 13:40:13 +00:00
" </td></tr> \n <tr><td> " ;
2003-09-12 11:27:57 +00:00
echo _ ( 'Gecos' );
2003-10-04 18:44:18 +00:00
echo '</td><td><input name="f_general_gecos" type="text" size="30" value="' . $account_new -> general_gecos . '">' .
2003-10-21 13:40:13 +00:00
" </td> \n <td> " .
2003-10-17 07:58:43 +00:00
'<a href="../help.php?HelpNumber=413" target="lamhelp">' . _ ( 'Help' ) . '</a>' .
2003-09-12 11:27:57 +00:00
'</td></tr><tr><td>' ;
2003-09-17 16:57:01 +00:00
echo _ ( " Display name " );
echo " </td> \n <td> " .
2003-10-04 18:44:18 +00:00
" <input name= \" f_smb_displayName \" type= \" text \" size= \" 30 \" maxlength= \" 50 \" value= \" " . $account_new -> smb_displayName . " \" > " .
2003-10-17 07:58:43 +00:00
" </td> \n <td><a href= \" ../help.php?HelpNumber=420 \" target= \" lamhelp \" > " . _ ( 'Help' ) . " </a></td> \n </tr> \n <tr> \n <td> " ;
2003-09-12 11:27:57 +00:00
echo _ ( 'Password' );
echo '</td><td>' ;
2003-10-04 18:44:18 +00:00
if ( isset ( $account_old )) {
2003-09-12 11:27:57 +00:00
echo '<input name="respass" type="submit" value="' ;
echo _ ( 'Reset password' ); echo '">' ;
}
2003-10-21 13:40:13 +00:00
echo " </td></tr> \n <tr><td> " ;
2003-09-12 11:27:57 +00:00
echo _ ( 'Domain' );
2003-10-04 18:44:18 +00:00
if ( $config_intern -> is_samba3 ()) {
2003-10-21 13:40:13 +00:00
// Get Domain-name from domainlist when using samba 3
echo '</td><td><select name="f_smb_domain">' ;
2003-09-12 11:27:57 +00:00
for ( $i = 0 ; $i < sizeof ( $samba3domains ); $i ++ ) {
2003-10-04 18:44:18 +00:00
if ( $account_new -> smb_domain -> name ) {
if ( $account_new -> smb_domain -> name == $samba3domains [ $i ] -> name )
2003-09-12 11:27:57 +00:00
echo '<option selected>' . $samba3domains [ $i ] -> name . '</option>' ;
else echo '<option>' . $samba3domains [ $i ] -> name . '</option>' ;
}
else echo '<option>' . $samba3domains [ $i ] -> name . '</option>' ;
}
echo '</select>' ;
}
else {
2003-10-21 13:40:13 +00:00
// Display a textfield for samba 2.2
2003-10-04 18:44:18 +00:00
echo '</td>' . " \n " . '<td><input name="f_smb_domain" type="text" size="20" maxlength="80" value="' . $account_new -> smb_domain . '">' ;
2003-09-12 11:27:57 +00:00
}
2003-10-21 13:40:13 +00:00
echo '</td>' . " \n " . '<td><a href="../help.php?HelpNumber=460" target="lamhelp">' . _ ( 'Help' ) . '</a></td></tr>' . " \n <tr><td> " ;
// Display all allowed host suffixes
echo _ ( 'Suffix' ); echo '</td><td><select name="f_general_suffix">' ;
foreach ( $ldap_intern -> search_units ( $config_intern -> get_HostSuffix ()) as $suffix ) {
if ( $account_new -> general_dn ) {
if ( $account_new -> general_dn == $suffix )
echo '<option selected>' . $suffix . '</option>' ;
else echo '<option>' . $suffix . '</option>' ;
}
else echo '<option>' . $suffix . '</option>' ;
2003-09-20 10:15:24 +00:00
}
2003-10-21 13:40:13 +00:00
echo '</select></td><td><a href="../help.php?HelpNumber=463" target="lamhelp">' . _ ( 'Help' ) . '</a>' .
" </td> \n </tr> \n </table> " ;
echo _ ( 'Values with * are required' );
echo " </fieldset> \n " ;
// Show fieldset where to save a new profile
echo " <fieldset class= \" hostedit-dark \" ><legend class= \" hostedit-bright \" ><b> " ;
2003-09-12 11:27:57 +00:00
echo _ ( " Save profile " );
2003-10-21 13:40:13 +00:00
echo " </b></legend> \n <table border=0 width= \" 100% \" > \n <tr> \n <td width= \" 50% \" > " ;
2003-09-12 11:27:57 +00:00
echo '<input name="f_finish_safeProfile" type="text" size="30" maxlength="50">' ;
2003-10-21 13:40:13 +00:00
echo '</td><td width=\"30%\"><input name="save" type="submit" value="' ;
2003-09-12 11:27:57 +00:00
echo _ ( 'Save profile' );
2003-10-21 13:40:13 +00:00
echo '"></td><td width="20%"><a href="../help.php?HelpNumber=457" target="lamhelp">' . _ ( 'Help' );
echo " </a></td> \n </tr> \n </table> \n </fieldset> " ;
// Show fieldset with modify, undo and back-button
2003-09-12 16:50:55 +00:00
echo " <fieldset class= \" hostedit-bright \" ><legend class= \" hostedit-bright \" ><b> " ;
2003-10-04 18:44:18 +00:00
if ( $account_old ) echo _ ( 'Modify' );
2003-09-12 11:27:57 +00:00
else echo _ ( 'Create' );
echo " </b></legend> \n " ;
2003-10-21 13:40:13 +00:00
echo " <table border=0 width= \" 100% \" ><tr><td width= \" 50% \" > " ;
// display undo-button when editiing a host
if ( isset ( $account_old )) {
echo " <input name= \" next_reset \" type= \" submit \" value= \" " ; echo _ ( 'Undo changes' );
echo " \" > \n " ;
2003-09-12 11:27:57 +00:00
}
2003-10-21 13:40:13 +00:00
echo " </td> \n <td width= \" 30% \" ></td><td width= \" 20% \" > " ;
2003-09-12 11:27:57 +00:00
echo '<input name="create" type="submit" value="' ;
2003-10-04 18:44:18 +00:00
if ( $account_old ) echo _ ( 'Modify Account' );
2003-09-12 11:27:57 +00:00
else echo _ ( 'Create Account' );
2003-09-12 11:56:50 +00:00
echo '">' . " \n " ;
2003-10-21 13:40:13 +00:00
echo " </td></tr></table></fieldset> \n " ;
2003-09-12 11:27:57 +00:00
break ;
2003-10-21 13:40:13 +00:00
2003-09-12 11:27:57 +00:00
case 'finish' :
// Final Settings
echo '<input name="select" type="hidden" value="finish">' ;
2003-09-12 16:50:55 +00:00
echo " <fieldset class= \" hostedit-bright \" ><legend class= \" hostedit-bright \" ><b> " . _ ( 'Success' ) . " </b></legend> \n " ;
2003-09-12 11:27:57 +00:00
echo " <table border=0 width= \" 100% \" ><tr><td> " ;
echo '<tr><td>' ;
echo _ ( 'Host' );
2003-10-04 18:44:18 +00:00
echo ' ' . $account_new -> general_username . ' ' ;
if ( $account_old ) echo ' ' . _ ( 'has been modified' ) . '.' ;
2003-09-12 11:27:57 +00:00
else echo ' ' . _ ( 'has been created' ) . '.' ;
echo '</td></tr>' . " \n " . '<tr><td>' ;
2003-10-04 18:44:18 +00:00
if ( ! $account_old )
2003-09-12 11:27:57 +00:00
{ echo '<input name="createagain" type="submit" value="' ; echo _ ( 'Create another host' ); echo '">' ; }
2003-10-17 16:04:57 +00:00
echo '</td>' . " \n " . '<td>' .
'<input name="outputpdf" type="submit" value="' ; echo _ ( 'Create PDF file' ); echo '">' .
'</td>' . " \n " . '<td>' .
2003-09-12 11:27:57 +00:00
'<input name="backmain" type="submit" value="' ; echo _ ( 'Back to host list' ); echo '">' .
'</td></tr></table></fieldset' . " \n " ;
2003-10-17 16:04:57 +00:00
2003-09-12 11:27:57 +00:00
break ;
}
// Print end of HTML-Page
echo '</form></body></html>' ;
?>