| Server IP : 127.0.0.1 / Your IP : 216.73.216.109 Web Server : Apache/2.4.54 (Win64) OpenSSL/1.1.1q PHP/8.1.10 System : Windows NT DESKTOP-E5T4RUN 10.0 build 19045 (Windows 10) AMD64 User : SERVERWEB ( 0) PHP Version : 8.1.10 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/cygwin64/home/SERVERWEB/webmin-2.105/webmin/ |
Upload File : |
#!/usr/bin/perl
# Show a form for editing custom category names
require './webmin-lib.pl';
ReadParse();
ui_print_header(undef, $text{'categories_title'}, undef);
# Show language selector
print ui_form_start("edit_categories.cgi");
print "<b>$text{'categories_lang'}</b>\n";
print ui_select("lang", $in{'lang'},
[ [ "", "<$text{'default'}>" ],
map { [ $_->{'lang'}, "$_->{'desc'}" ] }
list_languages() ]),"\n";
print ui_submit($text{'categories_langok'}),"\n";
print ui_form_end();
print "$text{'categories_desc'}<p>\n";
print ui_form_start("save_categories.cgi");
print ui_hidden("lang", $in{'lang'});
print &ui_columns_start([ $text{'categories_code'},
$text{'categories_name'} ]);
# Show the existing categories
$file = "$config_directory/webmin.catnames";
$file .= ".".$in{'lang'} if ($in{'lang'});
read_file($file, \%catnames);
$catnames{''} ||= $catnames{'other'};
foreach $t (keys %text) {
$t =~ s/^category_// || next;
$field = $t || "other";
print &ui_columns_row([
$t || "<i>other</i>",
&ui_opt_textbox($field, $catnames{$t}, 30,
$text{'default'}, $text{'categories_custom'}),
], [ "valign=middle","valign=middle" ]);
$realcat{$t}++;
$realcat{'other'}++ if ($t eq '');
}
# Show new categories
$i = 0;
foreach $c (keys %catnames) {
if (!$realcat{$c}) {
print &ui_columns_row([
&ui_textbox("cat_$i", $c, 10),
&ui_textbox("desc_$i", $catnames{$c}, 30),
], [ "valign=middle","valign=middle" ]);
$i++;
}
}
print &ui_columns_row([
&ui_textbox("cat_$i", "", 10),
&ui_textbox("desc_$i", "", 30),
], [ "valign=middle","valign=middle" ]);
print &ui_columns_end();
print ui_form_end([ [ "ok", $text{'categories_ok'} ] ]);
ui_print_footer("", $text{'index_return'});