| Server IP : 134.236.49.22 / Your IP : 216.73.216.114 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/webmin/phpini/ |
Upload File : |
#!/usr/bin/perl
# Show all editable PHP configuration files
require './phpini-lib.pl';
# Get editable files
@files = &list_php_configs();
if (!@files) {
# User doesn't have access to any
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1);
&ui_print_endpage($text{'index_eaccess'});
}
@files = grep { -r $_->[0] } @files;
if (!@files) {
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1);
if ($access{'noconfig'}) {
&ui_print_endpage($text{'index_efiles'});
}
else {
&ui_print_endpage(&text('index_efiles2',
"../config.cgi?$module_name"));
}
}
if (@files == 1 && !$access{'anyfile'} && $access{'noconfig'}) {
# Just re-direct to the one file
&redirect("list_ini.cgi?file=".&urlize($files[0]->[0]));
}
else {
# Show a table of config files
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1);
@tds = ( undef, undef, "width=10% nowrap" );
print &ui_columns_start([ $text{'index_file'},
$text{'index_desc'},
$text{'index_actions'} ],
100, 0, \@tds);
foreach $f (@files) {
local @acts = ( "<a href='list_ini.cgi?file=".
&urlize($f->[0])."'>$text{'index_edit'}</a>" );
if ($access{'manual'}) {
push(@acts, "<a href='edit_manual.cgi?file=".
&urlize($f->[0])."'>$text{'index_manual'}</a>");
}
print &ui_columns_row([
"<tt>$f->[0]</tt>",
$f->[1],
join(" | ", @acts)
], \@tds);
}
print &ui_columns_end();
# Allow entering a file to edit
if ($access{'anyfile'}) {
print "<p>\n";
print &ui_form_start("list_ini.cgi");
print "<b>$text{'index_anyfile'}</b>\n";
print &ui_textbox("file", undef, 40)." ".
&file_chooser_button("file")." ".
&ui_submit($text{'index_edit'})."\n";
print &ui_form_end();
}
&ui_print_footer("/", $text{'index'});
}