do 'shell-lib.pl'; # acl_security_form(&options) # Output HTML for editing security options for the shell module sub acl_security_form { print " $text{'acl_user'} \n"; printf " %s\n", $_[0]->{'user'} ? '' : 'checked', $text{'acl_user_def'}; printf "\n", $_[0]->{'user'} ? 'checked' : ''; print " ", &user_chooser_button("user")," \n"; } # acl_security_save(&options) # Parse the form for security options for the shell module sub acl_security_save { $_[0]->{'user'} = $in{'user_def'} ? undef : $in{'user'}; }