webmin/bandwidth/acl_security.pl

21 lines
399 B
Perl
Raw Permalink Normal View History

2007-04-12 20:24:50 +00:00
do 'bandwidth-lib.pl';
# acl_security_form(&options)
# Output HTML for editing security options for the acl module
sub acl_security_form
{
2022-02-20 19:51:06 -08:00
my ($o) = @_;
print &ui_table_row($text{'acl_setup'},
&ui_yesno_radio("setup", $o->{'setup'}));
2007-04-12 20:24:50 +00:00
}
# acl_security_save(&options)
# Parse the form for security options for the acl module
sub acl_security_save
{
2022-02-20 19:51:06 -08:00
my ($o) = @_;
$o->{'setup'} = $in{'setup'};
2007-04-12 20:24:50 +00:00
}