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
|
<?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: vitals.php,v 1.13 2004/04/24 22:36:28 webbie Exp $
//
// xml_vitals()
//
function xml_vitals () {
global $sysinfo;
$ar_buf = $sysinfo->loadavg();
for ($i=0; $i<3; $i++) {
$load_avg .= $ar_buf[$i] . ' ';
}
$_text = " <Vitals>\n"
. " <Hostname>" . $sysinfo->chostname() . "</Hostname>\n"
. " <IPAddr>" . $sysinfo->ip_addr() . "</IPAddr>\n"
. " <Kernel>" . $sysinfo->kernel() . "</Kernel>\n"
. " <Distro>" . $sysinfo->distro() . "</Distro>\n"
. " <Distroicon>" . $sysinfo->distroicon() . "</Distroicon>\n"
. " <Uptime>" . $sysinfo->uptime() . "</Uptime>\n"
. " <Users>" . $sysinfo->users() . "</Users>\n"
. " <LoadAvg>" . trim($load_avg) . "</LoadAvg>\n"
. " </Vitals>\n";
return $_text;
}
//
// html_vitals()
//
function html_vitals () {
global $XPath;
global $text;
$_text = '<table border="0" width="90%" align="center">'
. '<tr><td valign="top"><font size="-1">'. $text['hostname'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Hostname') . '</font></td></tr>'
. '<tr><td valign="top"><font size="-1">'. $text['ip'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/IPAddr') . '</font></td></tr>'
. '<tr><td valign="top"><font size="-1">'. $text['kversion'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Kernel') . '</font></td></tr>'
. '<tr><td valign="top"><font size="-1">'. $text['dversion'] .'</font></td><td><img width="16" height="16" alt="" src="images/' . $XPath->getData('/phpsysinfo/Vitals/Distroicon') .'"> <font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Distro') . '</font></td></tr>'
. '<tr><td valign="top"><font size="-1">'. $text['uptime'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Uptime') . '</font></td></tr>'
. '<tr><td valign="top"><font size="-1">'. $text['users'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/Users') . '</font></td></tr>'
. '<tr><td valign="top"><font size="-1">'. $text['loadavg'] .'</font></td><td><font size="-1">' . $XPath->getData('/phpsysinfo/Vitals/LoadAvg') . '</font></td></tr>'
. '</table>';
return $_text;
}
?>
|