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

25 lines
592 B
PHTML

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