18 lines
392 B
PHTML
18 lines
392 B
PHTML
<?php
|
|
|
|
if (empty($object->hostgroups)) return;
|
|
|
|
$list = array();
|
|
foreach ($object->hostgroups as $name => $alias) {
|
|
$list[] = $this->qlink($alias, 'monitoring/list/services', array(
|
|
'hostgroup' => $name
|
|
));
|
|
}
|
|
printf(
|
|
"<tr><th>%s</th><td>%s %s</td></tr>\n",
|
|
$this->translate('Hostgroups'),
|
|
$this->img('img/icons/hostgroup_petrol.png'),
|
|
implode(', ', $list)
|
|
);
|
|
|