<?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: network.php,v 1.3 2002/01/17 00:55:55 precision Exp $
$net = $sysinfo->network();
$_text = '<table width="100%" align="center">'
. '<tr><td align="left" valign="top"><font size="-1"><b>' . $text['device'] . '</b></font></td>'
. '<td align="right" valign="top"><font size="-1"><b>' . $text['received'] . '</b></font></td>'
. '<td align="right" valign="top"><font size="-1"><b>' . $text['sent'] . '</b></font></td>'
. '<td align="right" valign="top"><font size="-1"><b>' . $text['errors'] . '</b></font></td>';
while (list($dev, $stats) = each($net)) {
$_text .= "\t<tr>\n";
$_text .= "\t\t<td align=\"left\" valign=\"top\"><font size=\"-1\">" . $dev . "</font></td>\n";
$_text .= "\t\t<td align=\"right\" valign=\"top\"><font size=\"-1\">" . format_bytesize($stats['rx_bytes'] / 1024) . "</font></td>\n";
$_text .= "\t\t<td align=\"right\" valign=\"top\"><font size=\"-1\">" . format_bytesize($stats['tx_bytes'] / 1024) . "</font></td>\n";
$_text .= "\t\t<td align=\"right\" valign=\"top\"><font size=\"-1\">" . $stats['errs'] . '/' . $stats['drop'] . "</font></td>\n";
$_text .= "\t</tr>\n";
}
$_text .= '</table>';
$tpl->set_var('network', makebox($text['netusage'], $_text, '100%'));
?>