| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/webmin/syslog-ng/ |
Upload File : |
#!/usr/bin/perl
# Show a list of log sources
require './syslog-ng-lib.pl';
&ui_print_header(undef, $text{'sources_title'}, "", "sources");
$conf = &get_config();
@sources = &find("source", $conf);
@links = ( &select_all_link("d"),
&select_invert_link("d"),
&ui_link("edit_source.cgi?new=1",$text{'sources_add'}) );
if (@sources) {
@tds = ( "width=5" );
print &ui_form_start("delete_sources.cgi", "post");
print &ui_links_row(\@links);
print &ui_columns_start([ "",
$text{'sources_source'},
$text{'sources_desc'},
], undef, 0, \@tds);
foreach $f (@sources) {
$desc = &nice_source_desc($f);
print &ui_checked_columns_row([
&ui_link("edit_source.cgi?name=$f->{'value'}",$f->{'value'}),
$desc || "<i>$text{'sources_none2'}</i>",
], \@tds, "d", $f->{'value'});
}
print &ui_columns_end();
print &ui_links_row(\@links);
print &ui_form_end([ [ "delete", $text{'sources_delete'} ] ]);
}
else {
print "<b>$text{'sources_none'}</b><p>\n";
print &ui_links_row([ $links[2] ]);
}
&ui_print_footer("", $text{'index_return'});