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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
|
<?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.38 2004/08/13 23:02:32 webbie Exp $
if (!$hide_picklist) {
echo "<center>";
$update_form = "<form method=\"POST\" action=\"$PHP_SELF\">\n" . "\t" . $text['template'] . ": \n" . "\t<select name=\"template\">\n";
$dir = opendir('templates/');
while (false !== ($file = readdir($dir))) {
if ($file != 'CVS' && $file[0] != '.' && is_dir('templates/' . $file)) {
$filelist[] = $file;
}
}
closedir($dir);
asort($filelist);
while (list ($key, $val) = each ($filelist)) {
if ($template == $val && !$random) {
$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 ($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('includes/lang/');
while (false !== ($file = readdir($dir))) {
if ($file[0] != '.' && is_file('includes/lang/' . $file) && eregi("\.php$", $file)) {
$filelist[] = eregi_replace('.php', '', $file);
}
}
closedir($dir);
asort($filelist);
while (list ($key, $val) = each ($filelist)) {
if ($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</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"> phpSysInfo-' . $VERSION . '</a> ' . strftime ($text['gen_time'], time());
echo "\n<br>\n</body>\n</html>\n";
?>
|