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

19 lines
531 B
PHTML
Raw Normal View History

<?php if (!empty($object->servicegroups)): ?>
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
}
?>
<div class="panel panel-default">
<div class="panel-heading">
{{SERVICEGROUP_ICON}} <span>Servicegroups</span>
</div>
<div class="panel-body">
<?= implode(', ', $servicegroups); ?>
</div>
</div>
<?php endif; ?>