Files
webmin/bandwidth/acl_security.pl
Jamie Cameron 491a91dbfc Use ui-lib
2022-02-20 19:51:06 -08:00

21 lines
399 B
Perl
Executable File

do 'bandwidth-lib.pl';
# acl_security_form(&options)
# Output HTML for editing security options for the acl module
sub acl_security_form
{
my ($o) = @_;
print &ui_table_row($text{'acl_setup'},
&ui_yesno_radio("setup", $o->{'setup'}));
}
# acl_security_save(&options)
# Parse the form for security options for the acl module
sub acl_security_save
{
my ($o) = @_;
$o->{'setup'} = $in{'setup'};
}