2007-04-03 14:10:23 +00:00
|
|
|
<?php
|
|
|
|
|
2011-04-21 12:59:44 +00:00
|
|
|
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";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($device['disabled'] == '1')
|
|
|
|
{
|
|
|
|
$class = "list-device-disabled";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-03 14:10:23 +00:00
|
|
|
$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
|
|
|
|
2011-04-21 12:59:44 +00:00
|
|
|
echo('
|
|
|
|
<tr bgcolor="'.$device_colour.'" class="'.$class.'">
|
|
|
|
<td width="40" align=center valign=middle>'.$image.'</td>
|
|
|
|
<td valign=middle><span style="font-weight: bold; font-size: 20px;">' . generate_device_link($device) . '</span>
|
|
|
|
<br />' . $device['location'] . '</td>
|
2007-04-03 14:10:23 +00:00
|
|
|
<td></td>
|
2011-04-21 12:59:44 +00:00
|
|
|
</tr>');
|
2007-04-03 14:10:23 +00:00
|
|
|
|
|
|
|
?>
|