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