mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-10-27 09:24:06 +01:00
13 lines
292 B
PHTML
13 lines
292 B
PHTML
<?php
|
|
|
|
if (empty($object->hostgroups)) return;
|
|
|
|
$list = array();
|
|
foreach ($object->hostgroups as $name => $alias) {
|
|
$list[] = $this->qlink($alias, 'monitoring/list/services', array(
|
|
'hostgroups' => $name
|
|
));
|
|
}
|
|
echo '<b>Hostgroups:</b> ' . implode(', ', $list) . "<br />\n";
|
|
|