21 lines
477 B
PHTML
21 lines
477 B
PHTML
<?php
|
|
|
|
if (empty($object->hostgroups)) return;
|
|
|
|
$list = array();
|
|
foreach ($object->hostgroups as $name => $alias) {
|
|
$list[] = $this->qlink(
|
|
$alias,
|
|
'monitoring/list/hosts',
|
|
array('hostgroup' => $name),
|
|
array('title' => sprintf($this->translate('List all hosts in the group "%s"'), $alias))
|
|
);
|
|
}
|
|
printf(
|
|
"<tr><th>%s</th><td>%s %s</td></tr>\n",
|
|
$this->translate('Hostgroups'),
|
|
$this->icon('host'),
|
|
implode(', ', $list)
|
|
);
|
|
|