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

26 lines
619 B
PHTML
Raw Normal View History

2013-07-12 14:33:17 +02:00
<?php
$servicegroups = array();
2013-07-12 14:33:17 +02:00
foreach ($object->servicegroups as $name => $alias) {
$servicegroups[] = '<a href="' . $this->href('monitoring/list/service', array('servicegroups' => $name)) . '">'
. $alias
. '</a>';
2013-07-12 14:33:17 +02:00
}
?>
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">
Servicegroups
</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($servicegroups)): ?>
No Servicegroups
<?php else: ?>
<?= implode(', ', $servicegroups); ?>
<?php endif; ?>
</div>
</div>