icingaweb2/modules/monitoring/application/views/scripts/show/components/servicegroups.phtml

19 lines
408 B
PHTML
Raw Normal View History

2013-07-12 14:33:17 +02:00
<?php
if (empty($object->servicegroups)) return;
$list = array();
2013-07-12 14:33:17 +02:00
foreach ($object->servicegroups as $name => $alias) {
$list[] = $this->qlink($alias, 'monitoring/list/services', array(
'servicegroup' => $name
));
2013-07-12 14:33:17 +02:00
}
2013-10-15 12:48:33 +02:00
printf(
"<tr><th>%s</th><td>%s %s</td></tr>\n",
$this->translate('Servicegroups'),
$this->img('img/icons/servicegroup_petrol.png'),
implode(', ', $list)
);
2013-10-15 12:48:33 +02:00