⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 system_footer.php

📁 groupoffice
💻 PHP
字号:
<?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.1 2005/04/15 21:23:31 mschering Exp $if (!$hide_picklist) {  echo "<center>";  $update_form = "<form method=\"POST\" action=\"$PHP_SELF\">\n" . "\t" . $text['template'] . ":&nbsp;\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&nbsp;" . $text['language'] . ":&nbsp;\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">&nbsp;phpSysInfo-' . $VERSION . '</a> ' . strftime ($text['gen_time'], time());echo "\n<br>\n</body>\n</html>\n";?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -