require 'format-lib.pl'; # acl_security_form(&options) # Output HTML for editing security options for the format module sub acl_security_form { local @dlist = &list_disks(); local ($d, %dcan); map { $dcan{$_}++ } split(/\s+/, $_[0]->{'disks'}); print " $text{'acl_disks'} \n"; printf " %s\n", $_[0]->{'disks'} eq '*' ? 'checked' : '', $text{'acl_dall'}; printf " %s
\n", $_[0]->{'disks'} eq '*' ? '' : 'checked', $text{'acl_dsel'}; print " \n"; print " $text{'acl_view'}\n"; print "",&ui_radio("view", $access{'view'}, [ [ 0, $text{'yes'} ], [ 1, $text{'no'} ] ])," \n"; } # acl_security_save(&options) # Parse the form for security options for the format module sub acl_security_save { if ($in{'disks_def'}) { $_[0]->{'disks'} = "*"; } else { $_[0]->{'disks'} = join(" ", split(/\0/, $in{'disks'})); } $_[0]->{'view'} = $in{'view'}; }