librenms/html/includes/hostbox-public.inc.php

70 lines
1.6 KiB
PHP
Raw Normal View History

<?php
2015-07-13 18:10:26 +00:00
2014-06-25 07:19:12 +00:00
/*
2015-07-13 18:10:26 +00:00
* This file is part of LibreNMS
*
* Copyright (c) 2014 Bohdan Sanders <http://bohdans.com/>
*
* 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 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
2015-07-13 18:10:26 +00:00
if ($bg == $list_colour_b) {
$bg = $list_colour_a;
}
else {
$bg = $list_colour_b;
}
2015-07-13 18:10:26 +00:00
if ($device['status'] == '0') {
$class = 'bg-danger';
}
2015-07-13 18:10:26 +00:00
else {
$class = 'bg-primary';
}
2015-07-13 18:10:26 +00:00
if ($device['ignore'] == '1') {
$class = 'bg-warning';
if ($device['status'] == '1') {
$class = 'bg-success';
}
}
if ($device['disabled'] == '1') {
$class = 'bg-info';
}
$type = strtolower($device['os']);
2015-07-13 18:10:26 +00:00
if ($device['os'] == 'ios') {
formatCiscoHardware($device, true);
}
$device['os_text'] = $config['os'][$device['os']]['text'];
2015-07-13 18:10:26 +00:00
echo ' <tr>
<td class="'.$class.' "></td>
<td>'.$image.'</td>
<td><span style="font-size: 15px;">'.generate_device_link($device).'</span></td>';
2015-07-13 18:10:26 +00:00
echo '<td>';
if ($port_count) {
echo ' <img src="images/icons/port.png" align=absmiddle /> '.$port_count;
}
2015-07-13 18:10:26 +00:00
echo '<br />';
if ($sensor_count) {
echo ' <img src="images/icons/sensors.png" align=absmiddle /> '.$sensor_count;
}
echo '</td>';
echo ' <td>'.$device['hardware'].' '.$device['features'].'</td>';
echo ' <td>'.formatUptime($device['uptime'], 'short').' <br />';
echo ' '.truncate($device['location'], 32, '').'</td>';
2015-07-13 18:10:26 +00:00
echo ' </tr>';