mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-05-27 18:10:10 +02:00
13 lines
347 B
PHTML
13 lines
347 B
PHTML
<?php
|
|
|
|
if (empty($object->servicegroups)) return;
|
|
|
|
$list = array();
|
|
foreach ($object->servicegroups as $name => $alias) {
|
|
$list[] = '<a href="' . $this->href('monitoring/list/service', array('servicegroups' => $name)) . '">'
|
|
. $alias
|
|
. '</a>';
|
|
}
|
|
echo '<b>Servicegroups:</b> ' . implode(', ', $list) . "<br />\n";
|
|
|