2007-04-03 14:10:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if ($device['status'] == '0') { $class = "list-device-down"; } else { $class = "list-device"; }
|
|
|
|
if ($device['ignore'] == '1') {
|
|
|
|
$class = "list-device-ignored";
|
|
|
|
if ($device['status'] == '1') { $class = "list-device-ignored-up"; }
|
|
|
|
}
|
|
|
|
$type = strtolower($device['os']);
|
|
|
|
unset($image);
|
|
|
|
|
2007-04-09 01:58:25 +00:00
|
|
|
$image = getImage($device['device_id']);
|
2007-04-03 14:10:23 +00:00
|
|
|
|
|
|
|
echo("
|
2009-05-28 13:03:52 +00:00
|
|
|
<tr bgcolor=$device_colour>
|
2007-04-03 14:10:23 +00:00
|
|
|
<td width='40' align=center valign=middle>$image</td>
|
|
|
|
<td valign=middle><span style='font-weight: bold; font-size: 20px;'>" . generatedevicelink($device) . "</span>
|
2009-05-28 13:03:52 +00:00
|
|
|
<br />" . $device['location'] . "</td>
|
2007-04-03 14:10:23 +00:00
|
|
|
<td></td>
|
|
|
|
</tr>");
|
|
|
|
|
|
|
|
?>
|