12 lines
237 B
PHP
12 lines
237 B
PHP
<div class="left b1 w99">
|
|
Status Box<br>
|
|
|
|
<?php if (!empty($hosts)) {
|
|
foreach ($hosts as $host) {
|
|
echo html::anchor('graph?host=' . $host['name'], $host['name'], array('class' => $host['state'])) . "</p>";
|
|
}
|
|
}
|
|
?>
|
|
|
|
</div>
|