|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /var/www/html/phpsysinfo/includes/ |
Upload File : |
<?php
//
// phpSysInfo - A PHP System Information Script
// http://phpsysinfo.sourceforge.net/
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// $Id: system_footer.php,v 1.44 2005/12/10 12:30:19 bigmichi1 Exp $
//
if (!defined('IN_PHPSYSINFO')) {
die("No Hacking");
}
if (!$hide_picklist) {
echo "<center>";
$update_form = "<form method=\"POST\" action=\"" . $_SERVER['PHP_SELF'] . "\">\n" . "\t" . $text['template'] . ": \n" . "\t<select name=\"template\">\n";
$dir = opendir(APP_ROOT . '/templates/');
while (false !== ($file = readdir($dir))) {
if ($file != 'CVS' && $file[0] != '.' && is_dir(APP_ROOT . '/templates/' . $file)) {
$filelist[] = $file;
}
}
closedir($dir);
asort($filelist);
while (list ($key, $val) = each ($filelist)) {
if ($_COOKIE['template'] == $val) {
$update_form .= "\t\t<option value=\"$val\" SELECTED>$val</option>\n";
} else {
$update_form .= "\t\t<option value=\"$val\">$val</option>\n";
}
}
$update_form .= "\t\t<option value=\"xml\">XML</option>\n";
// auto select the random template, if we're set to random
$update_form .= "\t\t<option value=\"random\"";
if ($_COOKIE['template']=='random') {
$update_form .= " SELECTED";
}
$update_form .= ">random</option>\n";
$update_form .= "\t</select>\n";
$update_form .= "\t " . $text['language'] . ": \n" . "\t<select name=\"lng\">\n";
unset($filelist);
$dir = opendir(APP_ROOT . '/includes/lang/');
while (false !== ($file = readdir($dir))) {
if ($file[0] != '.' && is_file(APP_ROOT . '/includes/lang/' . $file) && eregi("\.php$", $file)) {
$filelist[] = eregi_replace('.php', '', $file);
}
}
closedir($dir);
asort($filelist);
while (list ($key, $val) = each ($filelist)) {
if ($_COOKIE['lng'] == $val) {
$update_form .= "\t\t<option value=\"$val\" SELECTED>$val</option>\n";
} else {
$update_form .= "\t\t<option value=\"$val\">$val</option>\n";
}
}
$update_form .= "\t\t<option value=\"browser\"";
if ($_COOKIE['lng']=='browser') {
$update_form .= " SELECTED";
}
$update_form .= ">browser default</option>\n";
$update_form .= "\t</select>\n" . "\t<input type=\"submit\" value=\"" . $text['submit'] . "\">\n" . "</form>\n";
echo $update_form;
echo "\n\n</center>";
} else {
echo "\n\n<br>";
}
echo "\n<hr>\n" . $text['created'];
echo ' <a href="http://phpsysinfo.sourceforge.net" target="_blank">phpSysInfo-' . $VERSION . '</a> ' . strftime ($text['gen_time'], time());
echo "\n<br>\n</body>\n</html>\n";
?>