forked from virtualmin/virtualmin-registrar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
edit_auto.cgi
executable file
·63 lines (50 loc) · 1.91 KB
/
edit_auto.cgi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/local/bin/perl
# Show a form to setup automatic renewal for some account
use strict;
no strict 'refs';
use warnings;
our (%access, %text, %in);
require './virtualmin-registrar-lib.pl';
&ReadParse();
&error_setup($text{'auto_err'});
$access{'registrar'} || &error($text{'auto_ecannot'});
# Get the account
my ($account) = grep { $_->{'id'} eq $in{'id'}} &list_registrar_accounts();
$account || &error($text{'edit_egone'});
&ui_print_header(undef, $text{'auto_title'}, "", "auto");
print &ui_form_start("save_auto.cgi", "post");
print &ui_hidden("id", $in{'id'});
print &ui_hidden_table_start($text{'auto_header1'}, undef, 2, "main", 1,
[ "width=30%" ]);
# Account details
print &ui_table_row($text{'auto_account'},
$account->{'desc'});
my $dfunc = "type_".$account->{'registrar'}."_desc";
print &ui_table_row($text{'edit_registrar'},
&$dfunc($account));
# Renewal policy
print &ui_table_row($text{'auto_days'},
&ui_radio("days_def", $account->{'autodays'} ? 0 : 1,
[ [ 1, $text{'auto_off'} ],
[ 0, &text('auto_on',
&ui_textbox("days", $account->{'autodays'}, 5)) ] ]));
# Warning policy
print &ui_table_row($text{'auto_warn'},
&ui_radio("warn_def", $account->{'autowarn'} ? 0 : 1,
[ [ 1, $text{'auto_off'} ],
[ 0, &text('auto_on',
&ui_textbox("warn", $account->{'autowarn'}, 5)) ] ]));
# How long to renew for
my $yfunc = "type_".$account->{'registrar'}."_renew_years";
print &ui_table_row($text{'auto_years'},
&ui_textbox("years", $account->{'autoyears'} || &$yfunc($account), 5));
# Send email to
print &ui_table_row($text{'auto_email'},
&ui_opt_textbox("email", $account->{'autoemail'}, 40,
$text{'auto_none'}, $text{'auto_addr'}));
# Also notify domain owner?
print &ui_table_row($text{'auto_owner'},
&ui_yesno_radio("owner", $account->{'autoowner'}));
print &ui_hidden_table_end("main");
print &ui_form_end([ [ undef, $text{'save'} ] ]);
&ui_print_footer("", $text{'index_return'});