icingaweb2/modules/monitoring/application/views/scripts/show/components/hostgroups.phtml

26 lines
592 B
PHTML
Raw Normal View History

<?php
$hostgroups = array();
foreach ($object->hostgroups as $name => $alias) {
$hostgroups[] = '<a href="' . $this->href('monitoring/list/hosts', array('hostgroup' => $name)) . '">'
. $alias
. '</a>';
}
?>
2013-10-15 12:48:33 +02:00
<div>
<div class="panel-heading">
2013-10-15 12:48:33 +02:00
<div class="panel-hostname">
Hostgroups
</div>
</div>
2013-10-15 12:48:33 +02:00
<hr class="separator" />
<div class="panel-body">
2013-10-15 12:48:33 +02:00
<?php if (!count($hostgroups)): ?>
No Hostgroups
<?php else: ?>
<?= implode(', ', $hostgroups); ?>
<?php endif; ?>
</div>
</div>